AAFReport.frmRepMgr.btnReport_Click C# (CSharp) Method

btnReport_Click() private method

private btnReport_Click ( object sender, System e ) : void
sender object
e System
return void
        private void btnReport_Click(object sender, System.EventArgs e)
        {
            String status;
            String identity;
            String cmdline;

            cmdline = "\"" + m_StartupPath + "\\python.exe\" analyzerhtml.py \"" + BuildCurrentAAFSummaryTextReportFileSpec() + "\" \"" + BuildCurrentAAFHTMLReportFileSpec() + "\" AAFAnalyzerMain.exe \"" + BuildCurrentAAFFileSpec() + "\" AAFRequirements.xml ";
            Runner.Run(out status, out identity, cmdline, m_StartupPath);

            trvAAFFileInfo_Update();
            tmrReportBuilder.Interval = 1000;
            tmrReportBuilder.Start();
        }