![]() |
How to execute a CommandButton_Click macro without clicking on
Hi,
The Userform2 is opened from a Userform1 click. So, at the execution of the CommandButton1, after UserForm2.Show line, I'm wondering if it's possible to execute the macro inside CommandButton2_Click as if the user clicked on. Thanks!! Alex Private Sub CommandButton1_Click() UserForm1.Hide Load UserForm2 UserForm2.CommandButton2.BackColor = RGB(166, 182, 214) UserForm2.CommandButton2.SetFocus 'Something like Userform2.Browse.ExecuteMacro ?? UserForm2.Show End Sub -- Alex St-Pierre |
How to execute a CommandButton_Click macro without clicking on
Hi
Commandbutton2 must call a macro, so simply do Call myMacro Your Commandbutton2_Click macro would be Private sub Commandbutton2_Click () Call myMacro End sub and myMacro would be in a normal code module (cut and paste your existing code out of Commandbutton2_Click ). regards Paul On Mar 22, 6:23 pm, Alex St-Pierre wrote: Hi, The Userform2 is opened from a Userform1 click. So, at the execution of the CommandButton1, after UserForm2.Show line, I'm wondering if it's possible to execute the macro inside CommandButton2_Click as if the user clicked on. Thanks!! Alex Private Sub CommandButton1_Click() UserForm1.Hide Load UserForm2 UserForm2.CommandButton2.BackColor = RGB(166, 182, 214) UserForm2.CommandButton2.SetFocus 'Something like Userform2.Browse.ExecuteMacro ?? UserForm2.Show End Sub -- Alex St-Pierre |
How to execute a CommandButton_Click macro without clicking on
Do:
Public Sub CommandButton1_Click() Then you can do: UserForm2.CommandButton1_Click RBS "Alex St-Pierre" wrote in message ... Hi, The Userform2 is opened from a Userform1 click. So, at the execution of the CommandButton1, after UserForm2.Show line, I'm wondering if it's possible to execute the macro inside CommandButton2_Click as if the user clicked on. Thanks!! Alex Private Sub CommandButton1_Click() UserForm1.Hide Load UserForm2 UserForm2.CommandButton2.BackColor = RGB(166, 182, 214) UserForm2.CommandButton2.SetFocus 'Something like Userform2.Browse.ExecuteMacro ?? UserForm2.Show End Sub -- Alex St-Pierre |
How to execute a CommandButton_Click macro without clicking on
Since you're displaying UserForm2 as a modal dialog, you can call the
commandbutton2_click subroutine in the Activate event of Userform2. So, in UserForm2 code module: Private Sub UserForm_Activate() CommandButton2_Click End Sub -- Hope that helps. Vergel Adriano "Alex St-Pierre" wrote: Hi, The Userform2 is opened from a Userform1 click. So, at the execution of the CommandButton1, after UserForm2.Show line, I'm wondering if it's possible to execute the macro inside CommandButton2_Click as if the user clicked on. Thanks!! Alex Private Sub CommandButton1_Click() UserForm1.Hide Load UserForm2 UserForm2.CommandButton2.BackColor = RGB(166, 182, 214) UserForm2.CommandButton2.SetFocus 'Something like Userform2.Browse.ExecuteMacro ?? UserForm2.Show End Sub -- Alex St-Pierre |
How to execute a CommandButton_Click macro without clicking on
Cool
I knew public variables in form code are properties of the form, but this never occured to me. Paul On Mar 22, 6:50 pm, "RB Smissaert" wrote: Do: Public Sub CommandButton1_Click() Then you can do: UserForm2.CommandButton1_Click |
All times are GMT +1. The time now is 05:23 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com