Device: Add selecting "All Events" at one time.

pdablue

Active Member
Licensed User
Longtime User
Hi,

When developing on the Device, it would be nice if you
could select "All Events" for a control at one time.

For example, the ImageButton control has three events:

ButtonDown
ButtonUp
Click

If you want to use all of the events for an ImageButton you
have to select all events individually. To save time when
developing code on the device it would be nice if you could
select all of the events for a control at one time.

You could add an entry for "All Events" to add subs for all of
the events for a control at one time.

So, an ImageButton control events list could be modified to
look something like this:

ButtonDown
ButtonUp
Click
All Events

Adding a selection to add all of the events for a control at one
time would save alot of time when developing on the device,
especially if you have alot of controls on a form.

Another way would be to have a check list or check boxes where
you could select all of the events for a control that you would
like to add at one time.

This would save time when developing on the device.
 

Cableguy

Expert
Licensed User
Longtime User
Hi,

When developing on the Device, it would be nice if you
could select "All Events" for a control at one time.

For example, the ImageButton control has three events:

ButtonDown
ButtonUp
Click

If you want to use all of the events for an ImageButton you
have to select all events individually. To save time when
developing code on the device it would be nice if you could
select all of the events for a control at one time.

You could add an entry for "All Events" to add subs for all of
the events for a control at one time.

So, an ImageButton control events list could be modified to
look something like this:

ButtonDown
ButtonUp
Click
All Events

Adding a selection to add all of the events for a control at one
time would save alot of time when developing on the device,
especially if you have alot of controls on a form.

Another way would be to have a check list or check boxes where
you could select all of the events for a control that you would
like to add at one time.

This would save time when developing on the device.

I like the idea, even on the desktop..
We could have someting like a check box along side of each event so that we could "create" more that one, and even have an "all" option...
 

pdablue

Active Member
Licensed User
Longtime User
Duplicating a control and it selected events.

Hi,

Duplicating a Control:

It would also be nice to be able to select a control and then tap on

"Duplicate Control"

and have all of the active events for the selected control duplicated
into the new control as well.
 
Top