public static bool addNewDataSet(Range range) { string message = "Wilt U de range " + range.Address(true, true) + " toevoegen als data set?"; DialogResult dialogResult = MessageBox.Show(message, formTitle, YesNo, Question); return(dialogResult == Yes); }
public static bool addNewDataSet(Range range) { string message = "Would you like to add the range " + range.Address(true, true) + " to the data set?"; DialogResult dialogResult = MessageBox.Show(message, formTitle, YesNo, Question); return(dialogResult == Yes); }
void worksheet_SelectionChange(Range target) { this.uiTextBox_Range.Text = target.Address(true, true); }