I'm currently trying to move some VB6 macros into a C# app and I'm having trouble setting the active cell using C#.
In VB6 its simply:
ActiveSheet.Range("L1").Select
Does anyone know what the C# equivalent is?
Cheers in advance.
|
I'm currently trying to move some VB6 macros into a C# app and I'm having trouble setting the active cell using C#. In VB6 its simply:
Does anyone know what the C# equivalent is? Cheers in advance. | |||
|
feedback
|
|
Here's a sample piece of code:
You can also capture ranges:
I believe to you just the Select method as before to select a range, although I haven't tested this.
You can obviously streamline this and chain these statements together, with the right casting. I don't want to hazard a guess here as I've not got a VSTO project open in from of me. EDIT You should also be able to get a range from the sheet using
VSTO tends to return Objects most of the time, necessitating casts, but | |||||||||
feedback
|
System.Xml– Aren Apr 30 '10 at 15:24