Error messages displayed only when run from network drive not locally
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
My app displays the following two error messages. I have an unhandled exception sub to catch these, but its displayed anyways. When run locally (both as build or debug), I see no error messages. Am I missing some sort of .Net configuration? 1st[^] This is a result of running:
Try Dim HowManyCities As Integer = SQLCount("SELECT Count(LCF\_Info\_Market) FROM " + cboMarket.SelectedItem.ToString, Database) Dim Cities(HowManyCities - 1, 1) As String Dim i As Integer Cities = GetCities("SELECT LCF\_Info\_Market, LCF\_Info\_Code FROM " + cboMarket.SelectedItem.ToString, Database, HowManyCities) For i = 0 To Cities.GetUpperBound(0) cboCities.Items.Add(Cities(i, 0)) Next PopulateCodes() Catch e As Exception MsgBox(e.ToString) End Try
2nd[^] This error is simply from:
Application.Exit()
:doh: