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)); } } }