Click here to Skip to main content
16,018,347 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Background Color Pin
ThatsAlok2-Jun-05 1:11
ThatsAlok2-Jun-05 1:11 
GeneralTo display image file in dialog application Pin
Member 15060711-Jun-05 22:54
Member 15060711-Jun-05 22:54 
GeneralRe: To display image file in dialog application Pin
ThatsAlok1-Jun-05 23:10
ThatsAlok1-Jun-05 23:10 
GeneralSlider in Browser Control Pin
Ali_quaidian1-Jun-05 22:16
Ali_quaidian1-Jun-05 22:16 
QuestionAnyone who did GSM signalling decoding ?? Pin
SAMZC1-Jun-05 21:36
SAMZC1-Jun-05 21:36 
GeneralC++ Noob Pin
Psych0hans1-Jun-05 21:03
Psych0hans1-Jun-05 21:03 
GeneralRe: C++ Noob Pin
toxcct1-Jun-05 21:09
toxcct1-Jun-05 21:09 
GeneralRe: C++ Noob Pin
Psych0hans1-Jun-05 21:17
Psych0hans1-Jun-05 21:17 
D'Oh! | :doh: LOL Thanks My Bad.......
But now there 2 more errors..... LMAO They Jus dont stop do they.....
WhileDemo.cpp
E:\Hansveer\C++ For Dummies\Chap05\WhileDemo\WhileDemo.cpp(6) : error C2143: syntax error : missing ',' before '.'
E:\Hansveer\C++ For Dummies\Chap05\WhileDemo\WhileDemo.cpp(6) : error C2059: syntax error : '.'
Error executing cl.exe.

WhileDemo.exe - 2 error(s), 0 warning(s)

The program is as follows, Its jus a tutorial.D'Oh! | :doh:

// WhileDemo - input a loop count. Loop while
// outputing astring arg number of times.
#include <stdio.h>
#include <iostream.h>

int main(int arg. char* pszArgs[])
{
// input the loop count
int loopcount;
cout << "Enter loopcount: ";
cin >> loopcount;

// now loop that many times
while (loopcount > 0)
{
loopcount = loopcount - 1;
cout << "Only" << loopcount << "loops to go\n";
}
return 0;
}
GeneralRe: C++ Noob Pin
toxcct1-Jun-05 21:20
toxcct1-Jun-05 21:20 
GeneralRe: C++ Noob Pin
Cedric Moonen1-Jun-05 21:21
Cedric Moonen1-Jun-05 21:21 
GeneralRe: C++ Noob Pin
Psych0hans1-Jun-05 21:25
Psych0hans1-Jun-05 21:25 
GeneralRe: C++ Noob Pin
Cedric Moonen1-Jun-05 21:29
Cedric Moonen1-Jun-05 21:29 
GeneralRe: C++ Noob Pin
Psych0hans1-Jun-05 21:33
Psych0hans1-Jun-05 21:33 
GeneralRe: C++ Noob Pin
ThatsAlok1-Jun-05 21:43
ThatsAlok1-Jun-05 21:43 
GeneralRe: C++ Noob [EDITED] Pin
ThatsAlok1-Jun-05 21:31
ThatsAlok1-Jun-05 21:31 
GeneralRe: C++ Noob Pin
Cedric Moonen1-Jun-05 21:32
Cedric Moonen1-Jun-05 21:32 
GeneralRe: C++ Noob Pin
ThatsAlok1-Jun-05 21:34
ThatsAlok1-Jun-05 21:34 
GeneralRe: C++ Noob Pin
Cedric Moonen1-Jun-05 21:38
Cedric Moonen1-Jun-05 21:38 
GeneralRe: C++ Noob Pin
ThatsAlok1-Jun-05 21:48
ThatsAlok1-Jun-05 21:48 
GeneralRe: C++ Noob Pin
Trollslayer2-Jun-05 1:30
mentorTrollslayer2-Jun-05 1:30 
GeneralRetrieving the true item bounds of List Control in Icons View mode Pin
Plamen Petrov1-Jun-05 20:47
professionalPlamen Petrov1-Jun-05 20:47 
Questioncofused! what's wrong with the code? Pin
qqworm1-Jun-05 20:46
qqworm1-Jun-05 20:46 
AnswerRe: cofused! what's wrong with the code? Pin
toxcct1-Jun-05 20:54
toxcct1-Jun-05 20:54 
GeneralRe: cofused! what's wrong with the code? Pin
qqworm1-Jun-05 21:40
qqworm1-Jun-05 21:40 
GeneralRe: cofused! what's wrong with the code? Pin
toxcct1-Jun-05 22:59
toxcct1-Jun-05 22:59 

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.