Click here to Skip to main content
15,912,977 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: caps lock Pin
Ravi Bhavnani22-Feb-04 10:02
professionalRavi Bhavnani22-Feb-04 10:02 
GeneralMemory Management in C++ Pin
Iceberg7621-Feb-04 18:44
Iceberg7621-Feb-04 18:44 
GeneralRe: Memory Management in C++ Pin
Arcrest21-Feb-04 21:00
Arcrest21-Feb-04 21:00 
GeneralRe: Memory Management in C++ Pin
Keith Vitali22-Feb-04 0:09
Keith Vitali22-Feb-04 0:09 
GeneralRe: Memory Management in C++ Pin
Gary R. Wheeler22-Feb-04 4:43
Gary R. Wheeler22-Feb-04 4:43 
GeneralRe: Memory Management in C++ Pin
Iceberg7622-Feb-04 8:19
Iceberg7622-Feb-04 8:19 
GeneralRe: Memory Management in C++ Pin
Gary R. Wheeler22-Feb-04 15:38
Gary R. Wheeler22-Feb-04 15:38 
Generalhelp with classes Pin
GdsFisher21-Feb-04 18:00
GdsFisher21-Feb-04 18:00 
Hey everyone,

I'm trying to learn C++ so take it easy one me, k?

I have a class called wrdrSE, and a dialog called IDD_WORDRAIDER_DIALOG. I want to use an instance of wrdrSE and call several functions within it. When the user click a button on IDD_WORDRAIDER_DIALOG, the button click events will create the instance, and call several functions within the instance. But, I am getting linking errors when I compile my project. Here are the errors:

Word RaiderDlg.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall wrdrSE::~wrdrSE(void)" (??1wrdrSE@@UAE@XZ)
Word RaiderDlg.obj : error LNK2001: unresolved external symbol "public: void __thiscall wrdrSE::Find(void)" (?Find@wrdrSE@@QAEXXZ)
Word RaiderDlg.obj : error LNK2001: unresolved external symbol "public: void __thiscall wrdrSE::CreateKeywords(class CString)" (?CreateKeywords@wrdrSE@@QAEXVCString@@@Z)
Word RaiderDlg.obj : error LNK2001: unresolved external symbol "public: __thiscall wrdrSE::wrdrSE(void)" (??0wrdrSE@@QAE@XZ)

-------------------------------
Some of the header for wrdrSE:
-------------------------------
// wrdrSE.h: interface for the wrdrSE class.
#include "wrdrSearchResults.h"
#include "wrdrSearchSettings.h"

class wrdrSE
{
public:
wrdrSE();
virtual ~wrdrSE();
public:
void CreateKeywords(CString Query);
void Find();
};


-------------------------------
here are parts of wrdrSE.cpp:
-------------------------------

// wrdrSE.cpp: implementation of the wrdrSE class.
#include "stdafx.h"
#include "Word Raider.h"
#include "wrdrSE.h"
#include "wrdrSearchResults.h"
#include "wrdrSearchSettings.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

void CreateKeywords(CString Query){

}

void Find(){

}

-------------------------------
Why am I getting these linking errors???
GeneralRe: help with classes Pin
wb21-Feb-04 18:26
wb21-Feb-04 18:26 
GeneralRe: help with classes Pin
Iceberg7621-Feb-04 18:29
Iceberg7621-Feb-04 18:29 
GeneralRe: help with classes Pin
GdsFisher22-Feb-04 6:19
GdsFisher22-Feb-04 6:19 
GeneralStrings in C++ Pin
Iceberg7621-Feb-04 16:14
Iceberg7621-Feb-04 16:14 
GeneralRe: Strings in C++ Pin
Tim Smith21-Feb-04 17:11
Tim Smith21-Feb-04 17:11 
GeneralRe: Strings in C++ Pin
Iceberg7621-Feb-04 19:28
Iceberg7621-Feb-04 19:28 
GeneralRe: Strings in C++ Pin
markkuk21-Feb-04 23:58
markkuk21-Feb-04 23:58 
GeneralRe: Strings in C++ Pin
Tim Smith22-Feb-04 4:13
Tim Smith22-Feb-04 4:13 
GeneralRe: Strings in C++ Pin
Michael Dunn22-Feb-04 5:48
sitebuilderMichael Dunn22-Feb-04 5:48 
GeneralRe: Strings in C++ Pin
Tim Smith22-Feb-04 6:34
Tim Smith22-Feb-04 6:34 
GeneralRe: Strings in C++ Pin
Michael Dunn22-Feb-04 6:40
sitebuilderMichael Dunn22-Feb-04 6:40 
GeneralRe: Strings in C++ Pin
Iceberg7622-Feb-04 9:49
Iceberg7622-Feb-04 9:49 
GeneralRe: Strings in C++ Pin
Tim Smith22-Feb-04 11:16
Tim Smith22-Feb-04 11:16 
GeneralRe: Strings in C++ Pin
Tim Smith22-Feb-04 4:15
Tim Smith22-Feb-04 4:15 
GeneralRe: Strings in C++ Pin
David Crow23-Feb-04 3:14
David Crow23-Feb-04 3:14 
Questionhow to connect to access database in vc++6.0? Pin
Anonymous21-Feb-04 16:09
Anonymous21-Feb-04 16:09 
AnswerRe: how to connect to access database in vc++6.0? Pin
LieuLuc21-Feb-04 17:12
LieuLuc21-Feb-04 17:12 

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.