making a userform work ,oops

S

scott t

i have a excel worksheet that has all my functions on it. Now i have made a userform to work with it ,but i'm clueless on how to get the userform to work as an .exe program ,hence i just want the form to load ,and let the excel worksheet hide in the background and do all the work.
 
T

Tom Ogilvy

the best you can do is

Application.visible = False
userform1.show

in the workbook.open event. The excel application will be visible before
that command is executed.

You can't create an Exe. I assume you mean operate like an Exe.

--
Regards
Tom Ogilvy


scott t said:
i have a excel worksheet that has all my functions on it. Now i have
made a userform to work with it ,but i'm clueless on how to get the
userform to work as an .exe program ,hence i just want the form to load ,and
let the excel worksheet hide in the background and do all the work.
 
S

scott t

thanks ,that worked ,yes i was looking for a way to run it like an .exe program ,well i guess i need to study some more and find the right way to run this program i have.
 
Top