Пример #1
0
 public override void Start(bool withDebugging)
 {
     if (!VB6Helper.GetIsVB6Available())
     {
         ICSharpCode.SharpDevelop.SD.MessageService.ShowError("Cannot locate VB6.EXE. Please make sure that you have entered the correct path to the VB6-directory under 'Tools -> VB6'.");
     }
     else
     {
         if (withDebugging)
         {
             VB6Helper.RunProject(_project.GetOwnedProject());
         }
         else
         {
             // TODO: Just run the EXE!
         }
     }
 }