Release My Application
-
I am tryin to release my application from visul studio but i dont know if i am doing it correct ,, if i try to run my application in other systems it doesnt work but it works ok in my system ,, can any one help me ?
Hi, if the other system does not have (the right version of) .NET, you would get a rather mysterious error dialog with an error number; if so show it. otherwise, the problem should be recognizable from looking at the Exception. If you havent done so, I strongly recommend to enclose everything in your static Main() method with a try catch construct; in the catch(Exception exc) show the entire exception as in MessageBox.Show(Exception.ToString()); :)
Luc Pattyn
try { [Search CP Articles] [Search CP Forums] [Forum Guidelines] [My Articles] } catch { [Google] }
-
Hi, if the other system does not have (the right version of) .NET, you would get a rather mysterious error dialog with an error number; if so show it. otherwise, the problem should be recognizable from looking at the Exception. If you havent done so, I strongly recommend to enclose everything in your static Main() method with a try catch construct; in the catch(Exception exc) show the entire exception as in MessageBox.Show(Exception.ToString()); :)
Luc Pattyn
try { [Search CP Articles] [Search CP Forums] [Forum Guidelines] [My Articles] } catch { [Google] }
-
there is no .Net in the other sytem ,, the error messeage is about the .net framewrok: The setup require the .Net framework 2.0.50727 pleae install the .net ..........etc
So, that problem is solved. Install .NET then install your app. Lucky you, an app missing an earlier .NET version just gave an error code. :)
Luc Pattyn
try { [Search CP Articles] [Search CP Forums] [Forum Guidelines] [My Articles] } catch { [Google] }
-
So, that problem is solved. Install .NET then install your app. Lucky you, an app missing an earlier .NET version just gave an error code. :)
Luc Pattyn
try { [Search CP Articles] [Search CP Forums] [Forum Guidelines] [My Articles] } catch { [Google] }