Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Who knows what I need to install in the client system to run a C# application?

Who knows what I need to install in the client system to run a C# application?

Scheduled Pinned Locked Moved C#
csharphelpdebuggingquestion
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Y Offline
    Y Offline
    yboc
    wrote on last edited by
    #1

    I got below error message when I try to run my application on a Win2000 system with .netframework 1.1 installed. Application has generated an exception that could not be handled. No debugger found. Registered JIT debugger is not available. An attempt to launch a JIT debugger with the following command resulted in an error code of 0x2(2) . Please check computer settings. cordbg.exe ! a 0x724. Pls help me. Thanks a lot for your replying. Thanks. coby

    F 1 Reply Last reply
    0
    • Y yboc

      I got below error message when I try to run my application on a Win2000 system with .netframework 1.1 installed. Application has generated an exception that could not be handled. No debugger found. Registered JIT debugger is not available. An attempt to launch a JIT debugger with the following command resulted in an error code of 0x2(2) . Please check computer settings. cordbg.exe ! a 0x724. Pls help me. Thanks a lot for your replying. Thanks. coby

      F Offline
      F Offline
      Furty
      wrote on last edited by
      #2

      The VS errlook.exe util says this about error 0x724: Incompatible version of the serializing package. This seems to hint at problems with either the Object or XMl serializers - check if there's been any changes with the type you are using between framework versions. Also, try wrapping the code in you Main class in a try{} catch{} group so you can get more meaningful error messages. For example:

      [STAThread]
      static void Main(string[] args)
      {
      try
      {
      Form1 main = new Form1();
      main.Show();
      }
      catch (Exception ex)
      {
      MessageBox.Show(ex.ToString(), ex.Message);
      }
      }

      Y 1 Reply Last reply
      0
      • F Furty

        The VS errlook.exe util says this about error 0x724: Incompatible version of the serializing package. This seems to hint at problems with either the Object or XMl serializers - check if there's been any changes with the type you are using between framework versions. Also, try wrapping the code in you Main class in a try{} catch{} group so you can get more meaningful error messages. For example:

        [STAThread]
        static void Main(string[] args)
        {
        try
        {
        Form1 main = new Form1();
        main.Show();
        }
        catch (Exception ex)
        {
        MessageBox.Show(ex.ToString(), ex.Message);
        }
        }

        Y Offline
        Y Offline
        yboc
        wrote on last edited by
        #3

        Thank you very much for the response. I did add the code in the project. And then I got below message. System.Security.SecurityException: Request for the permission of type System.Data.SqlClient.SqlClientPermission,System.Data, Version= 1.0.5000.0, Culture= neutral, PublickeyToken=b77a5c561934e089 failed. at System.Security.CodeAccessSecurityEngine.CheckHelper(PermissionSet grantedSet,PermissionSet deniedSet, CodeAccessPermission demand,PermissinToken permToken, ..... It seems that I can't get the permission to access Sql server. Could you pls tell me how to resolve this issue? Thanks. coby

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups