Click here to Skip to main content
15,921,905 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to import icons to the list Box Pin
CPallini13-Apr-07 1:26
mveCPallini13-Apr-07 1:26 
Questionhow to link the prolog to C++ Pin
ismail marmoush12-Apr-07 23:40
ismail marmoush12-Apr-07 23:40 
QuestionHow to import CIE and CLS files? Pin
Joan M12-Apr-07 23:33
professionalJoan M12-Apr-07 23:33 
QuestionHow to set document file extension? Pin
maxmaven12-Apr-07 23:03
maxmaven12-Apr-07 23:03 
AnswerRe: How to set document file extension? Pin
Paresh Chitte13-Apr-07 2:41
Paresh Chitte13-Apr-07 2:41 
QuestionMFC Serialization Pin
Keshav V. Kamat12-Apr-07 22:52
Keshav V. Kamat12-Apr-07 22:52 
AnswerRe: MFC Serialization Pin
Cedric Moonen12-Apr-07 23:12
Cedric Moonen12-Apr-07 23:12 
GeneralRe: MFC Serialization Pin
Keshav V. Kamat12-Apr-07 23:46
Keshav V. Kamat12-Apr-07 23:46 
AnswerRe: MFC Serialization Pin
maxmaven12-Apr-07 23:16
maxmaven12-Apr-07 23:16 
GeneralRe: MFC Serialization Pin
Keshav V. Kamat12-Apr-07 23:48
Keshav V. Kamat12-Apr-07 23:48 
QuestionHow to merge only two cells using MSHFlexGrid? Pin
megha_gharote12-Apr-07 22:26
megha_gharote12-Apr-07 22:26 
QuestionMultiple fonts CEdit Pin
hatemtaleb12-Apr-07 22:20
hatemtaleb12-Apr-07 22:20 
AnswerRe: Multiple fonts CEdit Pin
Mark Salsbery13-Apr-07 7:51
Mark Salsbery13-Apr-07 7:51 
Questionalready defined in .obj Pin
Programm3r12-Apr-07 22:16
Programm3r12-Apr-07 22:16 
AnswerRe: already defined in .obj (modified: some addendum) Pin
CPallini12-Apr-07 22:24
mveCPallini12-Apr-07 22:24 
QuestionRe: already defined in .obj [MOD] Pin
Programm3r12-Apr-07 22:30
Programm3r12-Apr-07 22:30 
AnswerRe: already defined in .obj [MOD] Pin
Michael Dunn12-Apr-07 23:02
sitebuilderMichael Dunn12-Apr-07 23:02 
GeneralRe: already defined in .obj [MOD] Pin
Programm3r13-Apr-07 1:15
Programm3r13-Apr-07 1:15 
GeneralRe: already defined in .obj (modified: some addendum) Pin
Programm3r12-Apr-07 22:35
Programm3r12-Apr-07 22:35 
AnswerRe: already defined in .obj Pin
Don Box12-Apr-07 22:34
Don Box12-Apr-07 22:34 
QuestionRe: already defined in .obj Pin
Programm3r12-Apr-07 22:36
Programm3r12-Apr-07 22:36 
GeneralRe: already defined in .obj Pin
cp987612-Apr-07 22:39
cp987612-Apr-07 22:39 
GeneralRe: already defined in .obj Pin
Programm3r12-Apr-07 22:41
Programm3r12-Apr-07 22:41 
QuestionHow to add data to a grid [modified] Pin
engilela12-Apr-07 21:20
engilela12-Apr-07 21:20 
QuestionLinker Error Pin
Programm3r12-Apr-07 19:59
Programm3r12-Apr-07 19:59 
Hi all,

Take the following into consederation:
header file
class ftp :
	public ftpHook
{
public:
    int ftp_FileExists(LPSTR Filename);
    LPSTR ftp_StrChr(LPSTR StringPtr, char Ch);
};


cpp file
#include "ftp.h"
int ftp::ftp_FileExists(LPSTR Filename)
{
  Ptr = ftp_StrChr(PathBuffer+lstrlen((LPSTR)LocalDir)+1,':');
  //some code ....
}
</code>


But I keep receiving the following error:

Error 1 error LNK2019: unresolved external symbol "public: char * __thiscall ftp::ftp_StrChr(char *,char)" (?ftp_StrChr@ftp@@QAEPADPADD@Z) referenced in function "public: int __thiscall ftp::ftp_FileExists(char *)" (?ftp_FileExists@ftp@@QAEHPAD@Z) ftp.obj

Can anyone please help me.
Many Thanks.
Regards,




The only programmers that are better than C programmers are those who code in 1's and 0's..... Smile | :)

Smile | :) Programm3r

My Blog: ^_^

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.