VB32 caused an invalid page fault HELP! 
Author Message
 VB32 caused an invalid page fault HELP!

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



Thu, 29 Apr 1999 03:00:00 GMT  
 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.



Mon, 03 May 1999 03:00:00 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. vb32 4.0 causing invalid page fault

2. VB32 caused an invalid page fault in module V32.DLL

3. VB32 caused an invalid page fault in module Kernel32.exe

4. VB32 caused a page fault im module KERNEL32.DLL

5. VB32 caused a page fault im module KERNEL32.DLL

6. VB32 caused a page fault im module KERNEL32.DLL

7. VB32 caused a page fault in module KERNEL32.DLL

8. VB5 caused an invalid page fault in ( any help please )

9. HELP! Dll causing invalid page faults

10. Data Tips causing invalid page fault

11. MSACCESS caused an invalid page fault in module VBA332.DLL

12. MSACCESS caused an invalid page fault in module vba332.dll

 

 
Powered by phpBB® Forum Software