View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Bob Sullentrup Bob Sullentrup is offline
external usenet poster
 
Posts: 25
Default ProgressBar in VSTO

Folks,

Looks as if a ProgressBar control can be found in MSComCtlLib.

How do I get it to work in VSTO?

For a button, I need to say:

Me.btnTestDataLayer = CType(Me.FindControl("btnTestDataLayer"),
MSForms.CommandButton)

In the OpenWorkbook event.

Me.ProgBar = CType(Me.FindControl("ProgressBar1"),
MSComCtl.ProgressBar)

does not work.


--
Bob Sullentrup