Who knows what I need to install in the client system to run a C# application?
-
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
-
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
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);
}
} -
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);
}
}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