WinNT and Compilation in .Net

T

theali

Hi to all

I am getting a problem while running my application complied in Visual
Studio .NET on Winnt

Problem:

i got message:

The procedure entry point GetMonitorInfoA could not be located in
Dynamic dll USER32.dll

(GetMonitorinfo (GetMenuinfo, GetMonitorinfoA))

as i run my application on WINNT.

Where as if i compile same in Visual Studio 6 have no problem.

So please help me if some on know about this

regards

Ali
 
N

Nishant Sivakumar

NT does not support GetMonitorInfo, you need 2000 or later (or 98 or later).
 
A

Andre Kaufmann

theali said:
Hi to all

I am getting a problem while running my application complied in Visual
Studio .NET on Winnt

Windows NT 4.0 is not a target platform of VS 2005.
If you don't use some parts of the runtime, the applications should also
run under Windows NT 4.0. But it's a somewhat tedious work to do.

Perhaps the following article might help:

http://www.codeproject.com/useritems/vcredists_x86.asp

It's more targeted how to compile and deploy VC++ 2005 applications
linked to the dynamic runtime Dll, but holds a few hints for Windows NT 4.0
Problem:

[...]
Ali

Andre
 
B

Bruno van Dooren

look in MSDN. all functions have a listing of the platforms on which they
are supported.

kind regards,
Bruno.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top