Click here to Skip to main content
15,896,444 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: menu item with image Pin
_AnsHUMAN_ 13-Jul-06 20:55
_AnsHUMAN_ 13-Jul-06 20:55 
AnswerRe: menu item with image Pin
Hamid_RT14-Jul-06 1:49
Hamid_RT14-Jul-06 1:49 
GeneralRe: menu item with image Pin
Amit Agarrwal13-Jul-06 21:20
Amit Agarrwal13-Jul-06 21:20 
GeneralRe: menu item with image Pin
*Dreamz13-Jul-06 21:27
*Dreamz13-Jul-06 21:27 
Questionhow to show other language in list box??? Pin
mimimimilaw13-Jul-06 20:27
mimimimilaw13-Jul-06 20:27 
AnswerRe: how to show other language in list box??? Pin
NiceNaidu13-Jul-06 21:38
NiceNaidu13-Jul-06 21:38 
GeneralRe: how to show other language in list box??? [modified] Pin
mimimimilaw13-Jul-06 21:41
mimimimilaw13-Jul-06 21:41 
QuestionProbelm in linking my library to program Pin
we3Guy13-Jul-06 20:11
we3Guy13-Jul-06 20:11 
i'm facing a problem, can someone help me with it? i do not know how come the window is unable to detect the location of the library files...
It goes like this:

//
// BioAPIClass.h
// Classes to simplify using the BioAPI from an application
//

#if ! defined (BIOAPICLASS_H)
#define BIOAPICLASS_H

// ../../../BioAPI/include/
// ../../../BioAPI/addins/maf
// ../../../BioAPI/imports/cdsa/v2_0/inc/

#if ! defined(USE_DEFAULT_PATHS) //FPC software structure

#include "bioapi_schema.h" // For data types etc
#include "port/bioapi_lock.h" // Needed for maf_collectn
#include "port/bioapi_port.h" // Needed for maf_collectn
#include "bioapi_err.h" // Needed for maf_collectn
#include "maf_collectn.h" // Needed for maf_util
#include "maf_util.h" // For App_Malloc, App_Free

#include "..\BioAPICommon\BioAPICommon.h" // Things common to application and BSP side
#include "..\BioAPICommon\FPCoreErrors.h" // FPC Specific error codes
#include "..\BioAPICommon\FPCoreConfig.h" // FPC specific additions
#include "..\CmnLibrary\CmnRegistry.h" // For registry access
#include "..\CmnLibrary\CmnDataStorage.h" // Data storage
#else //Default software structure
#include "..\..\..\BioAPI Consortium\BioAPI\source\include\bioapi_schema.h" // For data types etc
#include "..\..\..\BioAPI Consortium\BioAPI\source\include\port\bioapi_lock.h" // Needed for maf_collectn
#include "..\..\..\BioAPI Consortium\BioAPI\source\include\port\bioapi_port.h" // Needed for maf_collectn
#include "..\..\..\BioAPI Consortium\BioAPI\source\include\bioapi_err.h" // Needed for maf_collectn
#include "..\..\..\BioAPI Consortium\BioAPI\source\addins\maf\maf_collectn.h" // Needed for maf_util
#include "..\..\..\BioAPI Consortium\BioAPI\source\addins\maf\maf_util.h" // For App_Malloc, App_Free

#include "..\inc\BioAPICommon.h" // Things common to application and BSP side
#include "..\inc\FPCoreErrors.h" // FPC Specific error codes
#include "..\inc\FPCoreConfig.h" // FPC specific additions
#include "..\inc\CmnRegistry.h" // For registry access
#include "..\inc\CmnDataStorage.h" // Data storage
#endif


WHEN I COMPILE, IT SAYS:


Compiling...
FPCore Test.cpp
c:\documents and settings\student\desktop\research\fp\pc software\new folder\inc\bioapiclass.h(28) : fatal error C1083: Cannot open include file: '..\..\..\BioAPI Consortium\BioAPI\source\include\bioapi_schema.h': No such file or directory
FPCore TestDlg.cpp
c:\documents and settings\student\desktop\research\fp\pc software\new folder\inc\bioapiclass.h(28) : fatal error C1083: Cannot open include file: '..\..\..\BioAPI Consortium\BioAPI\source\include\bioapi_schema.h': No such file or directory
Error executing cl.exe.

FPCore TestD.exe - 2 error(s), 0 warning(s)


THIS IS WHERE MY LIBRARY FILES ARE KEPT:

C:\Documents and Settings\student\Desktop\research\FP\PC Software\New Folder\inc\

bioapi100.lib
bioapi_util.lib
BioAPIClasses.lib
BioAPIClassesD.lib
CmnLibrary.lib
CmnLibraryD.lib



PLESAE HELP ME WITH IT~ THANKS

Thanks & Regards
AnswerRe: Probelm in linking my library to program Pin
NiceNaidu13-Jul-06 21:29
NiceNaidu13-Jul-06 21:29 
QuestionRe: Probelm in linking my library to program Pin
we3Guy13-Jul-06 21:59
we3Guy13-Jul-06 21:59 
AnswerRe: Probelm in linking my library to program Pin
KarstenK13-Jul-06 22:21
mveKarstenK13-Jul-06 22:21 
GeneralRe: Probelm in linking my library to program Pin
we3Guy13-Jul-06 22:33
we3Guy13-Jul-06 22:33 
GeneralRe: Probelm in linking my library to program Pin
Nibu babu thomas13-Jul-06 22:48
Nibu babu thomas13-Jul-06 22:48 
GeneralRe: Probelm in linking my library to program Pin
we3Guy13-Jul-06 23:24
we3Guy13-Jul-06 23:24 
QuestionRead file Pin
see me13-Jul-06 20:09
see me13-Jul-06 20:09 
AnswerRe: Read file Pin
NiceNaidu13-Jul-06 21:18
NiceNaidu13-Jul-06 21:18 
GeneralRe: Read file Pin
see me13-Jul-06 21:39
see me13-Jul-06 21:39 
GeneralRe: Read file Pin
NiceNaidu13-Jul-06 21:42
NiceNaidu13-Jul-06 21:42 
AnswerRe: Read file Pin
Joe Woodbury14-Jul-06 9:37
professionalJoe Woodbury14-Jul-06 9:37 
QuestionOn File association with application Pin
Ramu Marriboina13-Jul-06 19:38
Ramu Marriboina13-Jul-06 19:38 
Questionm_slider.SetSelection(3,7); Pin
ashish dogra13-Jul-06 19:24
ashish dogra13-Jul-06 19:24 
AnswerRe: m_slider.SetSelection(3,7); Pin
*Dreamz13-Jul-06 20:18
*Dreamz13-Jul-06 20:18 
Questionvc++/api Pin
With_problem13-Jul-06 18:39
With_problem13-Jul-06 18:39 
AnswerRe: vc++/api Pin
With_problem13-Jul-06 18:49
With_problem13-Jul-06 18:49 
AnswerRe: vc++/api Pin
_AnsHUMAN_ 13-Jul-06 18:51
_AnsHUMAN_ 13-Jul-06 18:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.