
VB32 caused an invalid page fault HELP!
Quote:
> I keep getting the following error UNLESS I step through my code at which
> time I do not get the error and the program runs fine....
> VB32 caused an invalid page fault in module MSRDC32.OCX at 0137:057bc8f2
> Any ideas??
> Karen
Try using DoEvents using Timer. For example:
Dim dblEndTime As Double
' Wait for five seconds.
dblEndTime = Timer + 5#
Do While dblEndTime > Timer
' Do nothing but allow other applications to process
' their events.
DoEvents
Loop
You can use it as a subroutine to call it at various points in your
program. I don't know if this will work but it's worth a shot.