Click here to Skip to main content
15,886,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
This is weird, but it may be a setting in VS2010 ... I am debugging my VB.net program and when I get a critical error because a Zip file is missing, instead of the MsgBox displaying and allowing me to acknowledge the fact by clicking the OK Button, the OK button is automatically "clicked" !!!

VB
If File.Exists(myRARfile) Then
            ZipTest()
        Else
            myErrorMsg = "ERROR - There Is No RAR File - Aborting ..."
            MsgBox(myErrorMsg, vbCritical)
            MSWord.Quit()
            Exit Sub
        End If


On the right of the screen there is an IntelliTrace Window and it says :

User Prompt: Displayed ... Message Box text ...

User Prompt: Clicked "OK" The user clicked the "OK" button in the MessageBox

BUT I DIDN'T !!!!
Posted

1 solution

I deleted this processing after never getting a response ...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900