AAFReport.frmRepMgr.btnReport_Click C# (CSharp) 메소드

btnReport_Click() 개인적인 메소드

private btnReport_Click ( object sender, System e ) : void
sender object
e System
리턴 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();
        }