C#.net console application,leadtools problem on XP

  • Thread starter Thread starter CM
  • Start date Start date
C

CM

I have C# .net console application compress image using leadtools library. I
developed and tested on my machine - XP SP2, .NET Framework 1.1.4322,
leadtools v13.0.1.69, and custom library that called leadtools to actually
compress image.

It was work fine on my laptop but when I moved it to the server (which have
XP - not SP2, .NET Framework, leadtools and custom library are same
version), it didn't work. It just stop right where an application call my
custom library. Same application works on Windows 2000 Server.

I'm not sure what's going on here. I'm just start coding C# for a short
time. If anybody could give me suggestion, I'll appreciate it.
 
CM said:
I have C# .net console application compress image using leadtools library. I
developed and tested on my machine - XP SP2, .NET Framework 1.1.4322,
leadtools v13.0.1.69, and custom library that called leadtools to actually
compress image.

It was work fine on my laptop but when I moved it to the server (which have
XP - not SP2, .NET Framework, leadtools and custom library are same
version), it didn't work. It just stop right where an application call my
custom library. Same application works on Windows 2000 Server.

I'm not sure what's going on here. I'm just start coding C# for a short
time. If anybody could give me suggestion, I'll appreciate it.

Most likely this is an OS permissions issue. If you're using an NTFS
partitioned hard drive there are even more security options to hinder
your program from working correctly. Check the security options for
your console app to see if there would be any security setting
preventing it from calling your custom library.

BTW: Are you checking all return values to make sure an error is not
being generated?
 
Back
Top