F
Flyboy
Here's my code for selecting a "row"...
current = owctest.Spreadsheet1.ActiveCell.Address
i1 = owctest.SpreadSheet1.Selection.Row
i2 = owctest.Spreadsheet1.Selection.Row + (
owctest.Spreadsheet1.Selection.Rows.Count - 1 )
owctest.Spreadsheet1.Activesheet.Range
(owctest.Spreadsheet1.Activesheet.Cells(i1, 1),
owctest.Spreadsheet1.Activesheet.Cells(i2, 12)).Select
How do I Unselect a row?
What is the stupid function name for unselecting a cell?
Frustrating!!
Ryan
current = owctest.Spreadsheet1.ActiveCell.Address
i1 = owctest.SpreadSheet1.Selection.Row
i2 = owctest.Spreadsheet1.Selection.Row + (
owctest.Spreadsheet1.Selection.Rows.Count - 1 )
owctest.Spreadsheet1.Activesheet.Range
(owctest.Spreadsheet1.Activesheet.Cells(i1, 1),
owctest.Spreadsheet1.Activesheet.Cells(i2, 12)).Select
How do I Unselect a row?
What is the stupid function name for unselecting a cell?
Frustrating!!
Ryan