Example #1
0
        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);
        }
Example #2
0
        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);
        }
Example #3
0
 void worksheet_SelectionChange(Range target)
 {
     this.uiTextBox_Range.Text = target.Address(true, true);
 }