Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi All,
I I have more than one window of a workbook, buttons work only on window No. 1. Can it be achieved somehow that buttons work on other wondows, too? -- Regards! Stefi |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() you need to have a macro for each button but the macros can call a common subroutine located in a module place in a vba sheet Private Sub CommandButton1_Click() Call Commonbutton(ActiveSheet) End Sub Place in a moudle Sub Commonbutton(Sht as Variant) end Sub -- joel ------------------------------------------------------------------------ joel's Profile: 229 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=160217 Microsoft Office Help |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Many thanks Joel, I'm going to try it.
-- Regards! Stefi €˛joel€¯ ezt Ć*rta: you need to have a macro for each button but the macros can call a common subroutine located in a module place in a vba sheet Private Sub CommandButton1_Click() Call Commonbutton(ActiveSheet) End Sub Place in a moudle Sub Commonbutton(Sht as Variant) end Sub -- joel ------------------------------------------------------------------------ joel's Profile: 229 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=160217 Microsoft Office Help . |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Unfortunately it didn't work. If a sheet is in a window other than window 1,
buttons don't work at all, no macro is triggered. Pushing action is not animated like in cases when the button works. -- Regards! Stefi €˛Stefi€¯ ezt Ć*rta: Many thanks Joel, I'm going to try it. -- Regards! Stefi €˛joel€¯ ezt Ć*rta: you need to have a macro for each button but the macros can call a common subroutine located in a module place in a vba sheet Private Sub CommandButton1_Click() Call Commonbutton(ActiveSheet) End Sub Place in a moudle Sub Commonbutton(Sht as Variant) end Sub -- joel ------------------------------------------------------------------------ joel's Profile: 229 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=160217 Microsoft Office Help . |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Do you mean sheet 1? Select each button and right click. then select view code. Excel will automatically create the macro in the proper location. The button number is probably different. I usually change the Name in the button property to something revelent like RunAddition(). Then change the macro name of the click function to match the name property like Private Sub RunAddition_Click(). -- joel ------------------------------------------------------------------------ joel's Profile: 229 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=160217 Microsoft Office Help |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks, Joel, I'm going to give it a try!
-- Regards! Stefi €˛joel€¯ ezt Ć*rta: Do you mean sheet 1? Select each button and right click. then select view code. Excel will automatically create the macro in the proper location. The button number is probably different. I usually change the Name in the button property to something revelent like RunAddition(). Then change the macro name of the click function to match the name property like Private Sub RunAddition_Click(). -- joel ------------------------------------------------------------------------ joel's Profile: 229 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=160217 Microsoft Office Help . |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I think it's an old bug that controls from the control toolbox toolbar won't
work when there are two windows into the same worksheet--the commandbutton in the top window works, but the commandbutton in the bottom window doesn't (for example). Maybe you could replace the commandbuttons from the control toolbox toolbar with buttons from the Forms toolbar. (Or remove the window????) Stefi wrote: Hi All, I I have more than one window of a workbook, buttons work only on window No. 1. Can it be achieved somehow that buttons work on other wondows, too? -- Regards! Stefi -- Dave Peterson |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks, Dave, two windows is an essential part of my present project, I'm
going to try Forms toolbar. I use Excel2003, do you have any information on fixing this bug in Excel2007? -- Regards! Stefi €˛Dave Peterson€¯ ezt Ć*rta: I think it's an old bug that controls from the control toolbox toolbar won't work when there are two windows into the same worksheet--the commandbutton in the top window works, but the commandbutton in the bottom window doesn't (for example). Maybe you could replace the commandbuttons from the control toolbox toolbar with buttons from the Forms toolbar. (Or remove the window????) Stefi wrote: Hi All, I I have more than one window of a workbook, buttons work only on window No. 1. Can it be achieved somehow that buttons work on other wondows, too? -- Regards! Stefi -- Dave Peterson . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to save a desired window size but hv window comeup fullsz by d | Excel Discussion (Misc queries) | |||
View cell contents as a pop-up window (similar to comments window) | Excel Worksheet Functions | |||
The window opens in a smaller window not full sized window. | Excel Discussion (Misc queries) | |||
Min/Max/Close buttons have disappeared from worksheet window | Excel Discussion (Misc queries) | |||
VB FORMs, buttons, window properties | Excel Programming |