Oliver Dewar
Board Regular
- Joined
- Apr 17, 2011
- Messages
- 201
Hi All,
I have a bizarre occurrence!
I recently posted a thread here because I had a modeless userform (modeless1) which was activated from a modal userform (modal1) and when used, returned back to modal1 in a loop - the user could then call modeless1 again if more data needs to be processed and around we go.
The original problem was that modeless1 would only show once then fail to load on the second loop. Well, we overcame that with the following from the command button on modal1:
this calls modeless1 over and over again no problems... except that now I've found a random instance (in a different sequence of forms) where modeless1 will show once or twice (?!) then half load blank before totally disappearing!
Each time I close modeless1 using unload me so it's not hidden.
Anyone got any other ideas how to call a fresh version of modeless1 each time? Or any other ideas?
Thanks a ton in advance!
I have a bizarre occurrence!
I recently posted a thread here because I had a modeless userform (modeless1) which was activated from a modal userform (modal1) and when used, returned back to modal1 in a loop - the user could then call modeless1 again if more data needs to be processed and around we go.
The original problem was that modeless1 would only show once then fail to load on the second loop. Well, we overcame that with the following from the command button on modal1:
Code:
Dim modelessForm As Object
Set modelessForm = New modeless1
'then call the form
modeless1.Show False
this calls modeless1 over and over again no problems... except that now I've found a random instance (in a different sequence of forms) where modeless1 will show once or twice (?!) then half load blank before totally disappearing!
Each time I close modeless1 using unload me so it's not hidden.
Anyone got any other ideas how to call a fresh version of modeless1 each time? Or any other ideas?
Thanks a ton in advance!