Exemplo n.º 1
0
 internal static void CustomVerify(string filename, VccOptionPage options)
 {
     using (var customVerifyForm = new CustomVerifyForm(GetArgumentsFromOptions(options, false)))
     {
         if (customVerifyForm.ShowDialog() == DialogResult.OK)
         {
             LaunchVCC(String.Format("{0} \"{1}\"", customVerifyForm.Arguments, filename));
         }
     }
 }
Exemplo n.º 2
0
 internal static void CustomVerify(string filename, VccOptionPage options)
 {
     using (var customVerifyForm = new CustomVerifyForm(GetArgumentsFromOptions(options, false)))
       {
     if (customVerifyForm.ShowDialog() == DialogResult.OK)
     {
       LaunchVCC(String.Format("{0} \"{1}\"", customVerifyForm.Arguments, filename));
     }
       }
 }