private void DoCellInsert()
        {
            // If there is data to insert then do so
            CellEntry entry = new CellEntry();

            CellEntry.CellElement cell = new CellEntry.CellElement();
            cell.InputValue = this.cellUpdateDataTextBox.Text;
            cell.Row        = UInt32.Parse(this.cellUpdateRowTextBox.Text);
            cell.Column     = UInt32.Parse(this.cellUpdateColumnTextBox.Text);
            entry.Cell      = cell;

            service.Insert(new Uri(this.worksheetListView.SelectedItems[0].SubItems[1].Text),
                           entry);
        }
Exemple #2
0
 public void Init()
 {
     entry = new CellEntry();
     cell = new CellEntry.CellElement();
     rng = new Random();
 }
 public void Init()
 {
     cell = new CellEntry.CellElement();
     rng  = new Random();
 }