Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 449
Default macro command button click

Per, I believe the code halts on Userform5.show and doesn't proceed until
the form unloads, therefore focus must be set before show:

Sub test()
Load UserForm5
UserForm5.CommandButton3.SetFocus
UserForm5.Show
End Sub

Purists will prefer this way of doing it:

Sub test2()
Dim UF5 As UserForm5
Set UF5 = New UserForm5
UF5.CommandButton3.SetFocus
UF5.Show
MsgBox "that's all, folks"
Set UF5 = Nothing
End Sub

Best wishes Harald

"Per Jessen" wrote in message
...
Hi

Private Sub CommandButton1_Click()
UserForm5.Show
UserForm5.CommandButton3.SetFocus
Unload Me
End Sub

Regards,
Per

"Woodi2" skrev i meddelelsen
...
I have a macro that opens a userform. I want the macro to open userform 5
then upon opening userform 5 I want command button 3 to be activated. I
have
made command button 3 public withing the code for userform 5. When the
macro
is activated, the userform dispalys ok but the command button has not
been
activated. I thought this might be a simple one but may be I was wrong.

Private Sub CommandButton1_Click()
UserForm5.Show
UserForm5.CommandButton3_Click
Unload Me
End Sub



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Assign Macro to Command button by right click SANDIND Excel Programming 3 June 1st 08 02:09 PM
vba to click a command button [email protected] Excel Programming 5 October 24th 06 04:59 PM
VBA Click Command Button Benz Excel Programming 5 August 4th 06 09:30 PM
why do i have to click my 2nd command button twice rjudge Excel Programming 9 April 5th 06 04:16 PM
How do I set a macro to run when I click a Command Button in Exce. thewizrd Excel Programming 1 October 8th 04 06:44 PM


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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"