Release Version not working

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Problem:
App working OK in VS environment (VB.Net)
and when using a debug build outside of VS enviroment..

Also works OK as release version in VS environment...
But NOT as release version outside VS enviroment...

It appears to run this line of code:
da.Fill(crms_ds_ParcelList, "rfaPRef")
which is in a Private function called from Sub Main
Then nothing...Does not hang...just stops...
Also the messagebox I have put in a Catch...Finally statement
to try and track this prob flashes up but it to disappears.
 
Keith,

You may want to put some Trace statements in the code (use the file logging
option). This will give you a better idea of why it's not working. In the
catch clause, Trace the Message and StackTrace of the Exception object.

Sujit D'Mello
 
Back
Top