
how to set the program could give different actions when double clicks or single click a command button???
As you you have no doubt discovered, the Command button
does not have a DoubleClick event.
Probably the easiest way to get around this problem is NOT
to use a Command button in this instance. Use a Label
control which DOES have a DoubleClick event. (Picture,
Image and Shape controls also have DoubleClick events.)
Just remember that the Click event always happens just
before the DoubleClick event.
-- David Martin
Quote:
>how to make it??