C cassidyr1 Oct 27, 2004 #1 That's great thanks! I wonder why auto_open works and workbook_open doesn't work? Thanks again! Richar
That's great thanks! I wonder why auto_open works and workbook_open doesn't work? Thanks again! Richar
D Dave Peterson Oct 27, 2004 #2 I don't think I've ever experienced the problem, but the posts that I've read that suggested this fix guess that it's a timing issue with excel. xl has lots to do when you open the application and workbook. Sometimes, it gets confused. If the problem recurs, I've seen suggestions that go even further. Private Sub Workbook_Open() Application.OnTime Now, "Continue_Open" End Sub Then in a General module, sub Continue_Open() 'your real code here end sub
I don't think I've ever experienced the problem, but the posts that I've read that suggested this fix guess that it's a timing issue with excel. xl has lots to do when you open the application and workbook. Sometimes, it gets confused. If the problem recurs, I've seen suggestions that go even further. Private Sub Workbook_Open() Application.OnTime Now, "Continue_Open" End Sub Then in a General module, sub Continue_Open() 'your real code here end sub