Okay, I'm writing software that has a really long subroutine in it with countless do while/loop's in it. While it's looping, it's supposed to be refreshing the status bar at the bottom with the information that's going through it.
As long as you don't click away from the program while it's running, it'll continue doing it, however, if you click away, it'll stop. (It's still going, you're just not seeing any of it.) Then, if you click the program while that's happening, it'll report "Not Responding", even though it really is.
I've tried the following steps:
1. me.refresh
2. sbar.refresh (statusbar)
3. count to 50 and when you do, refresh both the status bar and the form and start over)
4. I'm so desperate, I've even tried:
me.visible = false
me.visible = true
me.refresh...even that doesn't work!
Is there any "fix all" solution anyone has to making the form refresh 'NO MATTER WHAT' even if it's not being paid attention to?
As long as you don't click away from the program while it's running, it'll continue doing it, however, if you click away, it'll stop. (It's still going, you're just not seeing any of it.) Then, if you click the program while that's happening, it'll report "Not Responding", even though it really is.
I've tried the following steps:
1. me.refresh
2. sbar.refresh (statusbar)
3. count to 50 and when you do, refresh both the status bar and the form and start over)
4. I'm so desperate, I've even tried:
me.visible = false
me.visible = true
me.refresh...even that doesn't work!
Is there any "fix all" solution anyone has to making the form refresh 'NO MATTER WHAT' even if it's not being paid attention to?