PDA

View Full Version : Solved: Run Userform via macro toolbar button



gscarter
08-07-2008, 06:34 AM
Hi Guys,

Can i program a custom toolbar button to run my app?

When i program the button it asks me for a macro to run, when i want to run my userForm.

Thanks
Gary

mikerickson
08-07-2008, 06:42 AM
Write a macro
Sub ShowMyUF()
Userform1.Show
End Suband assign it to the command bar button.

gscarter
08-07-2008, 08:20 AM
Cheers