View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Cone[_2_] Jim Cone[_2_] is offline
external usenet poster
 
Posts: 1,549
Default Form Control versus Active Control? When to use which?

Form controls are less complicated (fewer options) and have less overhead (memory requirements).
If form controls do the job and meet your needs they should be your first choice.
Both types of controls can be manipulated using VBA.

On the other hand, each successive release of XL has its unique features (problems).
Buttons of one type or the other can disappear, resize, move or act erratically depending
on how/when they are used, their settings and the Excel version.
Some of these issues belong to Microsoft and some to the user - cut and try sometimes is necessary.
--
Jim Cone
Portland, Oregon USA
http://www.mediafire.com/PrimitiveSoftware
(free and commercial excel programs)





"LightLY"
wrote in message
...
Dear Excel experts,

I am starting to use Excel 2010 VBA. I am confused over form control
and active controls. It seems they are quite similar. May I know under
what situation should one use form control or active control?

My understanding based on what I have read and tried is that when one
needs to write VBA code, use active control. Other than that, use form
control. Is this correct?

Thank you.