"GS" <
g...@somewhere.net> wrote in message
>> "GS" <
g...@somewhere.net> wrote in message
>>
>>>I know absolutely nothing about Access Forms, but if they support a
>>>listbox then if all you need is the ability to create optional menuitems
>>>at runtime the use a listbox and query the index or text in a Select Case
>>>construct to determine which process to run via the listbox's click
>>>event.
>>
>> Access forms have equivalents to most (though not all) Userform controls,
>> including a Listbox. But a Listbox of any type wouldn't help.
>>
>> The ideal solution would be to add a MSForm Frame as an aX to an Access
>> form and add controls to that. That works but is all much slower.
>>
>> There's are a lot of nice things about Access forms, not sure why
>> Userforms or even VB6 forms weren't updated similarly. OTH Access forms
>> lack some important things which is also odd.
>>
>> Peter T
>
> It was my intent to address the slowness issue. Using a listbox for user
> actions will process much faster, and without the added overhead of using
> a container plus multiple controls! Not to mention the entry point for all
> user actions is in one event, making code easier to manage/maintain
> IMO!<g>