View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
guest guest is offline
external usenet poster
 
Posts: 20
Default Programmatically adding checkbox and attaching event handlers

I create the worksheet programmtically. So there is no design time support.

"SteveM" wrote:

On Jun 10, 1:42 pm, guest wrote:
Hello. I need programmatically add CheckBox to the worksheet and then attach
event handlers using C#. Any ideas? I am using Microsoft.Office.Interop.Excel
library to do that. Unfortunately I have to use only interop library to do
that. Any help would be appreaciated.

thanks.


Better to just create the checkbox with its code and toggle .Visible
True/False.

SteveM