Exemple #1
0
        public void PopulateRowsList()
        {
            // reset the list
            RowComboBox.Clear();

            for (int i = 1; i <= _FineTune_CurrentTray.Rows; i++)
            {
                RowComboBox.Add(i);
            }
        }
Exemple #2
0
        public void PopulateRowsList()
        {
            // reset the list
            RowComboBox.Clear();

            NumOfRows = _Goto_CurrentTray.Rows;

            for (int i = 1; i <= NumOfRows; i++)
            {
                RowComboBox.Add(i);
            }
        }