Exemplo n.º 1
0
        private void frmMLRPredObs_HelpRequested(object sender, HelpEventArgs hlpevent)
        {
            string   apppath = Application.StartupPath.ToString();
            VBCSHelp help    = new VBCSHelp(apppath, sender);

            if (!help.Status)
            {
                MessageBox.Show(
                    "User documentation is found in the Documentation folder where you installed Virtual Beach"
                    + "\nIf your web browser is PDF-enabled, open the User Guide with your browser.",
                    "Neither Adobe Acrobat nor Adobe Reader found.",
                    MessageBoxButtons.OK);
            }
        }
Exemplo n.º 2
0
 private void frmModel_HelpRequested(object sender, HelpEventArgs hlpevent)
 {
     string apppath = Application.StartupPath.ToString();
     VBCSHelp help = new VBCSHelp(apppath, sender);
     if (!help.Status)
     {
         MessageBox.Show(
         "User documentation is found in the Documentation folder where you installed Virtual Beach"
         + "\nIf your web browser is PDF-enabled, open the User Guide with your browser.",
         "Neither Adobe Acrobat nor Adobe Reader found.",
         MessageBoxButtons.OK);
     }
 }