I'm using Excel spreadsheet control in my
VB application,
How can I select some columns and group them together ?
In Excel worksheet, you should write this:
Columns("A:C").Select
Selection.Columns.Group
But what should I write in
VB to get the same result ?
Thanks, Sharon.