H
Howard Weiss
I would like to set a particular cell in an Excel Spreadsheet to a specific
value
Visual Basic Equivalent would be
Cells(row, column) = x
where row and column locate the cell and x is the value
In C++, I can execute code such as
Excel::Range* range1 = worksheet->get_Range(S"G1", Missing:Value);
to obtain a range object which points ot G1 (row 1, column 7). However, I
cannot find an equivalent to access G1 by its row and column
I have tried get_Range(S"r1c7", Missing:Value) but this does not work.
worksheet->get_Cells() returns a range but does not take any parameters.
Any suggestuions?
Howard Weiss
value
Visual Basic Equivalent would be
Cells(row, column) = x
where row and column locate the cell and x is the value
In C++, I can execute code such as
Excel::Range* range1 = worksheet->get_Range(S"G1", Missing:Value);
to obtain a range object which points ot G1 (row 1, column 7). However, I
cannot find an equivalent to access G1 by its row and column
I have tried get_Range(S"r1c7", Missing:Value) but this does not work.
worksheet->get_Cells() returns a range but does not take any parameters.
Any suggestuions?
Howard Weiss