vba - Windows("ETY Tracker V1.2.xlsm").ScreenUpdating = False -


could please solve problem facing,when run program throwing me error "object dosen't support property or method"

private sub workbook_open()    'application.visible = false    'application.screenupdating = false    windows("ety tracker v1.2.xlsm").screenupdating = false    userform1.show end sub 

please help...i tried both application .visible close active workbooks have, , application.screenupdating not allow me edit or open other sheet other present user form.

are trying hide workbook , show form?

private sub workbook_open()     thisworkbook.windows(1).visible = false     userform1.show end sub 

or hide excel , show form? won't close workbooks - they're inside application in hidden.

private sub workbook_open()     application.visible = false     userform1.show end sub 

Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -