ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   How do you add arguments to an OnAction event? (https://www.excelbanter.com/excel-programming/282861-how-do-you-add-arguments-onaction-event.html)

Jason[_27_]

How do you add arguments to an OnAction event?
 
I'd like to add an argument to an Onaction sub, which is
associated with a button? Can I?

Sub DoThis(strArg as String)
....
End Sub

Dim b as CommandBarButton
b.OnAction ="DoThis" *** THEN WHAT ***


Thanks



Jake Marx[_3_]

How do you add arguments to an OnAction event?
 
Hi Jason,

Yes, you can do this. You can add the string to the Parameter property of
the CommandBarButton. Then, in your subroutine specified by the OnAction
property, you can check the Parameter property of the "clicked" button with
Application.CommandBars.ActionControl.Parameter.

--
Regards,

Jake Marx
MS MVP - Excel
www.longhead.com

[please keep replies in the newsgroup - email address unmonitored]


Jason wrote:
I'd like to add an argument to an Onaction sub, which is
associated with a button? Can I?

Sub DoThis(strArg as String)
....
End Sub

Dim b as CommandBarButton
b.OnAction ="DoThis" *** THEN WHAT ***


Thanks



Tim Zych[_4_]

How do you add arguments to an OnAction event?
 
.OnAction = "'DoThis ""TestString""'"

"Jason" wrote in message
...
I'd like to add an argument to an Onaction sub, which is
associated with a button? Can I?

Sub DoThis(strArg as String)
....
End Sub

Dim b as CommandBarButton
b.OnAction ="DoThis" *** THEN WHAT ***


Thanks





Tom Ogilvy

How do you add arguments to an OnAction event?
 
Note that this undocumented feature appears to not be supported in xl2002.
I believe it may have problems in the latest service release of xl2000 as
well. At least that is what I recall has been reported here.

--
Regards,
Tom Ogilvy

"Tim Zych" wrote in message
...
.OnAction = "'DoThis ""TestString""'"

"Jason" wrote in message
...
I'd like to add an argument to an Onaction sub, which is
associated with a button? Can I?

Sub DoThis(strArg as String)
....
End Sub

Dim b as CommandBarButton
b.OnAction ="DoThis" *** THEN WHAT ***


Thanks







Tim Zych[_5_]

How do you add arguments to an OnAction event?
 
Didn't know that. Thanks for the update.

-----Original Message-----
Note that this undocumented feature appears to not be

supported in xl2002.
I believe it may have problems in the latest service

release of xl2000 as
well. At least that is what I recall has been reported

here.

--
Regards,
Tom Ogilvy

"Tim Zych" wrote in message
...
.OnAction = "'DoThis ""TestString""'"

"Jason" wrote in

message
...
I'd like to add an argument to an Onaction sub, which

is
associated with a button? Can I?

Sub DoThis(strArg as String)
....
End Sub

Dim b as CommandBarButton
b.OnAction ="DoThis" *** THEN WHAT ***


Thanks






.


jason

How do you add arguments to an OnAction event?
 
I had the same problem: works in older Excel version

-----Original Message-----
Didn't know that. Thanks for the update.

-----Original Message-----
Note that this undocumented feature appears to not be

supported in xl2002.
I believe it may have problems in the latest service

release of xl2000 as
well. At least that is what I recall has been reported

here.

--
Regards,
Tom Ogilvy

"Tim Zych" wrote in message
...
.OnAction = "'DoThis ""TestString""'"

"Jason" wrote in

message
...
I'd like to add an argument to an Onaction sub,

which
is
associated with a button? Can I?

Sub DoThis(strArg as String)
....
End Sub

Dim b as CommandBarButton
b.OnAction ="DoThis" *** THEN WHAT ***


Thanks






.

.



All times are GMT +1. The time now is 08:59 AM.

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