AAFReport.frmRepMgr.btnReport_Click C# (CSharp) Méthode

btnReport_Click() private méthode

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