Example #1
0
 public void SetTargetFileToExisting(string existingFileName)
 {
     DialogHelpers.SelectRadioButton(GetMainWindowHWnd(), GenerateTypeDialogID, "AddToExistingFileRadioButton");
     DialogHelpers.SetElementValue(GetMainWindowHWnd(), GenerateTypeDialogID, "AddToExistingFileComboBox", existingFileName);
 }
 public void SelectSameFile()
 {
     DialogHelpers.SelectRadioButton(GetMainWindowHWnd(), ExtractInterfaceDialogID, "DestinationCurrentFileSelectionRadioButton");
 }
Example #3
0
 public void SetTargetFileToNewName(string newFileName)
 {
     DialogHelpers.SelectRadioButton(GetMainWindowHWnd(), GenerateTypeDialogID, "CreateNewFileRadioButton");
     DialogHelpers.SetElementValue(GetMainWindowHWnd(), GenerateTypeDialogID, "CreateNewFileComboBox", newFileName);
 }