View Single Post
  #1 (permalink)  
Old 06-05-2007, 01:48 PM
belotrei belotrei is offline
Junior Member
 
Join Date: May 2007
Posts: 37
Default debug mode stuck..

Sub App_Start
con.New1
cmd.New1("", con.Value)

Form1.Show
End Sub

Sub Form1_Show
Con.Open("Data Source = " & AppPath & "\notexistfilename.sl3")
cmd.CommandText = "select * from xxxxx order by yyyyy"
cmd.ExecuteTable("table1",0)
End Sub

I found this by accident.. when you type the not exist file name to open, an error message will show up and ask you to continue or not.
If you ask no, it will be in debug mode forever. Stop function is useless. The only way is quit..

But this only happen if the codes are placed under : Sub Form1_Show

Is this bug or not?
Reply With Quote