Simulate "Select All", "Copy" and "Paste"

ClayBrians

New Member
Hi folks,

Is there anyway I could simulate these functions on an Excel App using/ through a C# program code.
I mean i need to send these functions automatically through my C# programme.
I can open an Excel app and write date using the sendkeys option.
But as u might be knowing there is no Select all options in Excel, is there any other way that i could send a Ctl + A (for selecting the content of the excel sheet / cell) Like a get selection method in c++.
Please help if any one is aware of thid situation.

cheers...
 
ClayBrians said:
Hi folks,

Is there anyway I could simulate these functions on an Excel App using/ through a C# program code.
I mean i need to send these functions automatically through my C# programme.
I can open an Excel app and write date using the sendkeys option.
But as u might be knowing there is no Select all options in Excel, is there any other way that i could send a Ctl + A (for selecting the content of the excel sheet / cell) Like a get selection method in c++.
Please help if any one is aware of thid situation.

cheers...


Two loops, one that loops through every row and another that loops through each column of a selected row would work.... Where do you want to place all of the selected information?
 
Back
Top