Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS General Discussion » Where do you put all the flib and dll files? Collapse All
Subject Author Date
Matt Gates Mar 5, 2003 - 6:27 PM

I have created all the .lib and the .dll files that I think I may need for various projects. Now, where do I put all of them? I am a beginning C++ programmer in case you can’t tell : ) TIA.

Sergiy Lavrynenko Mar 6, 2003 - 8:21 AM

Hi,

All the Prof-UIS LIB and DLL files can be found in ...\Prof-UIS\Bin6 or ...\Prof-UIS\Bin7 folder (for VC++ 6 or 7).

You should add the ...\Prof-UIS\Include folder into the "Include folders list" in your VC++ environment settings. Also, you should add the ...\Prof-UIS\Bin6 or ...\Prof-UIS\Bin7 folder into the "Library folders list".

In your projects precompiled header file (usually named StdAfx.h) you should add this line:

#include <Prof-UIS.h>

Now your program will be linked together with appropriate Prof-UIS library (depending on your project settings).

To allow your program run, you may need copy required Prof-UIS DLL (if any required) into the same folder with your program EXE file.

Regards, Sergiy.

Matt Gates Mar 8, 2003 - 2:38 PM

Thanks!