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

C / C++ / MFC

 
GeneralEmbedding HTML code into VC Pin
Gita.Bairavi8-Feb-08 1:37
Gita.Bairavi8-Feb-08 1:37 
GeneralRe: Embedding HTML code into VC Pin
Rajkumar R8-Feb-08 3:56
Rajkumar R8-Feb-08 3:56 
GeneralRe: Embedding HTML code into VC Pin
Hamid_RT10-Feb-08 21:28
Hamid_RT10-Feb-08 21:28 
QuestionWhy ++++i works and i++++ does not work? Pin
Don Box8-Feb-08 0:53
Don Box8-Feb-08 0:53 
AnswerRe: Why ++++i works and i++++ does not work? Pin
CPallini8-Feb-08 0:58
mveCPallini8-Feb-08 0:58 
AnswerRe: Why ++++i works and i++++ does not work? Pin
ShilpiP8-Feb-08 1:02
ShilpiP8-Feb-08 1:02 
AnswerRe: Why ++++i works and i++++ does not work? Pin
David Crow8-Feb-08 2:37
David Crow8-Feb-08 2:37 
AnswerRe: Why ++++i works and i++++ does not work? Pin
Gregory Bryant10-Feb-08 16:42
Gregory Bryant10-Feb-08 16:42 
#include<iostream>


int main()
{
int i = 0;

while(i<5)
{
std::cout << i;
i++;
}
/*

while(i<5)
{
std::cout << i;
++i;
}
*/
std::cout << std::endl;
std::cin >> i;
return 0;
}
GeneralDirect Show and Multiple sound cards!! Pin
~Jabeen~8-Feb-08 0:41
~Jabeen~8-Feb-08 0:41 
GeneralRe: Direct Show and Multiple sound cards!! Pin
Rajkumar R8-Feb-08 1:49
Rajkumar R8-Feb-08 1:49 
GeneralRe: Direct Show and Multiple sound cards!! Pin
rjkg8-Feb-08 1:58
rjkg8-Feb-08 1:58 
GeneralRe: Direct Show and Multiple sound cards!! Pin
Rajkumar R8-Feb-08 4:20
Rajkumar R8-Feb-08 4:20 
GeneralRe: Direct Show and Multiple sound cards!! Pin
Rajkumar R8-Feb-08 2:23
Rajkumar R8-Feb-08 2:23 
GeneralConvert CString to DWORD or CString to COLORREF Pin
orihime8-Feb-08 0:06
orihime8-Feb-08 0:06 
GeneralRe: Convert CString to DWORD or CString to COLORREF Pin
Rajkumar R8-Feb-08 0:11
Rajkumar R8-Feb-08 0:11 
GeneralRe: Convert CString to DWORD or CString to COLORREF [modified] Pin
CPallini8-Feb-08 0:20
mveCPallini8-Feb-08 0:20 
GeneralRe: Convert CString to DWORD or CString to COLORREF Pin
orihime10-Feb-08 18:09
orihime10-Feb-08 18:09 
GeneralRe: Convert CString to DWORD or CString to COLORREF Pin
CPallini10-Feb-08 21:46
mveCPallini10-Feb-08 21:46 
Questionprivileged instruction exception in ultimate grid Pin
Anna Anna7-Feb-08 22:44
Anna Anna7-Feb-08 22:44 
GeneralRe: privileged instruction exception in ultimate grid Pin
Iain Clarke, Warrior Programmer8-Feb-08 1:12
Iain Clarke, Warrior Programmer8-Feb-08 1:12 
GeneralRe: privileged instruction exception - Problem solved Pin
Anna Anna8-Feb-08 3:27
Anna Anna8-Feb-08 3:27 
GeneralA very strange problem (to me at least) ..... Pin
Still learning how to code7-Feb-08 22:28
Still learning how to code7-Feb-08 22:28 
GeneralRe: A very strange problem (to me at least) ..... Pin
CPallini7-Feb-08 23:06
mveCPallini7-Feb-08 23:06 
GeneralRe: A very strange problem (to me at least) ..... Pin
Still learning how to code7-Feb-08 23:13
Still learning how to code7-Feb-08 23:13 
QuestionRe: A very strange problem (to me at least) ..... Pin
CPallini7-Feb-08 23:16
mveCPallini7-Feb-08 23:16 

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.