Guest User

Untitled

a guest
May 28th, 2012
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. .Net windows .exe Application gives an error after installation
  2. [STAThread]
  3. static void Main()
  4. {
  5. try{
  6. Application.EnableVisualStyles();
  7. Application.SetCompatibleTextRenderingDefault(false);
  8. Application.Run(new Form1());
  9. } catch(Exception ex){
  10. MesasgeBox.Show(ex.ToString());
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment