• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Use Userform and other Excel file

GeraldDLT

Member
Hi,

Is there a way that i can use a Userform and other excel file while the Userform's excel file is hidden

i already done this code

Code:
Userform1.show vbmodeless
application.visible = false

but when i open another excel file, the hidden excel file sets on visible.


Thanks,
Gerald
 
Application treats all instance of Excel as one.

Instead use something like.

Code:
Windows("YourWorkbookName").Visible = False
 
Back
Top