Click here to Skip to main content
15,793,085 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Subclass main Winamp window from plugin Pin
Justin Tay18-Jul-06 4:48
Justin Tay18-Jul-06 4:48 
QuestionCan I still use DLLs ? Pin
vcpp_cgr13-Jul-06 12:49
vcpp_cgr13-Jul-06 12:49 
AnswerRe: Can I still use DLLs ? Pin
Jun Du13-Jul-06 14:34
Jun Du13-Jul-06 14:34 
QuestionHBITMAP from clipboard Pin
Luksky13-Jul-06 12:43
Luksky13-Jul-06 12:43 
AnswerRe: HBITMAP from clipboard Pin
Chris Losinger13-Jul-06 12:52
professionalChris Losinger13-Jul-06 12:52 
GeneralRe: HBITMAP from clipboard Pin
Luksky14-Jul-06 1:18
Luksky14-Jul-06 1:18 
GeneralRe: HBITMAP from clipboard Pin
Luksky15-Jul-06 6:21
Luksky15-Jul-06 6:21 
QuestionError: LNK2019: Unresolved external symbol... Pin
jon-8013-Jul-06 11:42
professionaljon-8013-Jul-06 11:42 
Code:
#include <iostream>
#include ".\PrimeGen.h"
using namespace std;


void main ()
{
CPrimeGen PrimeRange1(1,1000);

int iCountPrimes = 0;

for (int iCount = 1; iCount = 1000; iCount++)
{ if (PrimeRange1.PrimeNumber[iCount] == true)
{iCountPrimes ++;}
}
cout << iCountPrimes;
}
class CPrimeGen
{
public:
CPrimeGen(int iUpperBound);
CPrimeGen(int iUpperBound, int iInterval);
CPrimeGen(int iLowerBound, int iUpperBound, int iInterval);
virtual ~CPrimeGen();


bool isPrime (int iNumber);
bool *PrimeNumber; // array of PrimeNumbers


};



Jon
AnswerRe: Error: LNK2019: Unresolved external symbol... Pin
Chris Losinger13-Jul-06 12:52
professionalChris Losinger13-Jul-06 12:52 
GeneralRe: Error: LNK2019: Unresolved external symbol... Pin
jon-8014-Jul-06 7:15
professionaljon-8014-Jul-06 7:15 
GeneralRe: Error: LNK2019: Unresolved external symbol... Pin
Rilhas17-Jul-06 13:54
Rilhas17-Jul-06 13:54 
QuestionC++ Exception Programming Pin
pgav13-Jul-06 10:50
pgav13-Jul-06 10:50 
AnswerRe: C++ Exception Programming Pin
led mike13-Jul-06 10:55
led mike13-Jul-06 10:55 
QuestionRe: C++ Exception Programming [modified] Pin
pgav13-Jul-06 11:41
pgav13-Jul-06 11:41 
AnswerRe: C++ Exception Programming Pin
led mike13-Jul-06 12:45
led mike13-Jul-06 12:45 
AnswerRe: C++ Exception Programming Pin
Joe Woodbury13-Jul-06 12:12
professionalJoe Woodbury13-Jul-06 12:12 
Questionloading movie clip in openGl? Pin
Noor Akhter13-Jul-06 10:49
Noor Akhter13-Jul-06 10:49 
AnswerRe: Plz Help newbie with AsyncSockets Pin
Moak17-Jul-06 5:17
Moak17-Jul-06 5:17 
QuestionHow can i draw the curve shape of mountains in terrain of game? Pin
Noor Akhter13-Jul-06 9:51
Noor Akhter13-Jul-06 9:51 
AnswerRe: How can i draw the curve shape of mountains in terrain of game? Pin
FarPointer13-Jul-06 9:54
FarPointer13-Jul-06 9:54 
GeneralRe: How can i draw the curve shape of mountains in terrain of game? Pin
Noor Akhter13-Jul-06 9:59
Noor Akhter13-Jul-06 9:59 
GeneralRe: How can i draw the curve shape of mountains in terrain of game? Pin
FarPointer13-Jul-06 10:08
FarPointer13-Jul-06 10:08 
GeneralRe: How can i draw the curve shape of mountains in terrain of game? Pin
earl13-Jul-06 12:45
earl13-Jul-06 12:45 
GeneralRe: How can i draw the curve shape of mountains in terrain of game? Pin
Panic2k313-Jul-06 18:21
Panic2k313-Jul-06 18:21 
QuestionC++ code parser... Pin
Nitron13-Jul-06 9:39
Nitron13-Jul-06 9:39 

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.