ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   simulating click events (https://www.excelbanter.com/excel-programming/320293-simulating-click-events.html)

Ben

simulating click events
 
simple question

Is there a way to simulate the clicking of a control through vba?

eg..
Sheet1 contains a label named 'l12' and will change colors when clicked,
is there a way to cimulate actually clicking it so that the code for its
event is triggered?

Sharad Naik

simulating click events
 
Just double click on the Label.
It will take you to that labels Click event code.
Write your code there.
Don't forget to come out of design mode to try your code,
cause the event is not fired if you are in design mode.

Sharad

"ben" wrote in message
...
simple question

Is there a way to simulate the clicking of a control through vba?

eg..
Sheet1 contains a label named 'l12' and will change colors when clicked,
is there a way to cimulate actually clicking it so that the code for its
event is triggered?




Sharad Naik

simulating click events
 
Forgot to add that, go in to Design mode before double clicking.

"ben" wrote in message
...
simple question

Is there a way to simulate the clicking of a control through vba?

eg..
Sheet1 contains a label named 'l12' and will change colors when clicked,
is there a way to cimulate actually clicking it so that the code for its
event is triggered?




Ray Costanzo [MVP]

simulating click events
 
You can just call the subroutine. Since the click sub has private scope
within the sheet code, you'd have to call it from in there.

Another option, a better one imo, would be to put the code into its own sub
elsewhere and just have the click event call that subroutine.


--

Ray at work
Microsoft ASP/ASP.NET MVP


"ben" wrote in message
...
simple question

Is there a way to simulate the clicking of a control through vba?

eg..
Sheet1 contains a label named 'l12' and will change colors when clicked,
is there a way to cimulate actually clicking it so that the code for its
event is triggered?




Sharad Naik

simulating click events
 
Sorry I completely misunderstood your question.

When you want to fire the evenet for clicking on Label1 in Sheet1, you can
simply do

Run "Sheet1.Label1_Click"

You can use it even in a module.

Sharad

"ben" wrote in message
...
simple question

Is there a way to simulate the clicking of a control through vba?

eg..
Sheet1 contains a label named 'l12' and will change colors when clicked,
is there a way to cimulate actually clicking it so that the code for its
event is triggered?




Ben

simulating click events
 
Thank you,

Unfortunately my question was still not explicit enough, it is a bit more
complicated than that as I am using a special work around to have several
hundred controls call the same code, and so the code has a recognizable
object on clicking, however just calling the code will not return an object,
but anyway I found another way to accomlplish what was needed. Thank you
though

"Sharad Naik" wrote:

Sorry I completely misunderstood your question.

When you want to fire the evenet for clicking on Label1 in Sheet1, you can
simply do

Run "Sheet1.Label1_Click"

You can use it even in a module.

Sharad

"ben" wrote in message
...
simple question

Is there a way to simulate the clicking of a control through vba?

eg..
Sheet1 contains a label named 'l12' and will change colors when clicked,
is there a way to cimulate actually clicking it so that the code for its
event is triggered?





Bob Phillips[_6_]

simulating click events
 
Ben,

It seems to me that you have a problem here.

Using the class code method to simulate control arrays, the event code gets
triggered on a control click. If you call it directly, the control is not
implicitly declared to the event. So, you need to make it known somehow,
such as a public variable, but this would negate some of the advantages (but
not all) of the control array method.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"ben" wrote in message
...
Thank you,

Unfortunately my question was still not explicit enough, it is a bit more
complicated than that as I am using a special work around to have several
hundred controls call the same code, and so the code has a recognizable
object on clicking, however just calling the code will not return an

object,
but anyway I found another way to accomlplish what was needed. Thank you
though

"Sharad Naik" wrote:

Sorry I completely misunderstood your question.

When you want to fire the evenet for clicking on Label1 in Sheet1, you

can
simply do

Run "Sheet1.Label1_Click"

You can use it even in a module.

Sharad

"ben" wrote in message
...
simple question

Is there a way to simulate the clicking of a control through vba?

eg..
Sheet1 contains a label named 'l12' and will change colors when

clicked,
is there a way to cimulate actually clicking it so that the code for

its
event is triggered?








All times are GMT +1. The time now is 06:45 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com