I have the following code...
Try
da.Fill(ds,"mys et")
Catch exc as exception
Msgbox("Check Connection string Info")
Ffrm.Dispose()
Application.Exi t()
Exit Sub
EndTry
I noticed that the Application.Exi t() alone did not exit the Sub
Procedure... so I added the Exit Sub. Why doesn't Application.Exi t()
alone work ?
Thanks!
Try
da.Fill(ds,"mys et")
Catch exc as exception
Msgbox("Check Connection string Info")
Ffrm.Dispose()
Application.Exi t()
Exit Sub
EndTry
I noticed that the Application.Exi t() alone did not exit the Sub
Procedure... so I added the Exit Sub. Why doesn't Application.Exi t()
alone work ?
Thanks!
Comment