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

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -