Click here to Skip to main content
15,887,434 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: error LNK1112: module machine type 'x64' conflicts with target machine type 'X86' [modified](Any Ideas Guys) Pin
Chris Losinger30-Mar-10 3:24
professionalChris Losinger30-Mar-10 3:24 
Questionchanges in taskbar Pin
Cvaji28-Mar-10 20:50
Cvaji28-Mar-10 20:50 
GeneralRe: changes in taskbar Pin
Code-o-mat28-Mar-10 22:01
Code-o-mat28-Mar-10 22:01 
GeneralRe: changes in taskbar Pin
Cvaji28-Mar-10 23:35
Cvaji28-Mar-10 23:35 
GeneralRe: changes in taskbar Pin
Code-o-mat28-Mar-10 23:40
Code-o-mat28-Mar-10 23:40 
GeneralRe: changes in taskbar Pin
Cvaji29-Mar-10 0:01
Cvaji29-Mar-10 0:01 
QuestionBeginners Guide / Visual C++ 2008 Express Edition written by Herb Schildt Pin
painterdave28-Mar-10 19:54
painterdave28-Mar-10 19:54 
AnswerRe: Beginners Guide / Visual C++ 2008 Express Edition written by Herb Schildt Pin
CPallini28-Mar-10 20:51
mveCPallini28-Mar-10 20:51 
painterdave wrote:
for(d= 1.0; e <= 100; e++)


Probably this should be
for(e= 1.0; e <= 100; e++)



painterdave wrote:
// every tenth line, print a blank line
if ( counter == 100 ) {
cout << " \n "; // output a blank line
}

Shouldn't that be:
if (counter==25)
{
  cout << endl;
  counter=0;
}
else
{
  counter++
}


Smile | :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke

[My articles]

GeneralRe: Beginners Guide / Visual C++ 2008 Express Edition written by Herb Schildt Pin
painterdave30-Mar-10 19:39
painterdave30-Mar-10 19:39 
GeneralRe: Beginners Guide / Visual C++ 2008 Express Edition written by Herb Schildt Pin
CPallini30-Mar-10 20:44
mveCPallini30-Mar-10 20:44 
AnswerRe: Beginners Guide / Visual C++ 2008 Express Edition written by Herb Schildt Pin
Richard MacCutchan28-Mar-10 23:18
mveRichard MacCutchan28-Mar-10 23:18 
AnswerRe: Beginners Guide / Visual C++ 2008 Express Edition written by Herb Schildt Pin
David Crow29-Mar-10 2:56
David Crow29-Mar-10 2:56 
AnswerRe: Beginners Guide / Visual C++ 2008 Express Edition written by Herb Schildt Pin
Tim Craig29-Mar-10 13:40
Tim Craig29-Mar-10 13:40 
Questionbuffer problems with CFile Pin
Krauze28-Mar-10 19:36
Krauze28-Mar-10 19:36 
AnswerRe: buffer problems with CFile Pin
hanq_3891013028-Mar-10 19:55
hanq_3891013028-Mar-10 19:55 
AnswerRe: buffer problems with CFile Pin
Iain Clarke, Warrior Programmer28-Mar-10 20:26
Iain Clarke, Warrior Programmer28-Mar-10 20:26 
AnswerRe: buffer problems with CFile Pin
Krauze29-Mar-10 3:53
Krauze29-Mar-10 3:53 
QuestionRe: buffer problems with CFile Pin
David Crow29-Mar-10 4:30
David Crow29-Mar-10 4:30 
AnswerRe: buffer problems with CFile Pin
Vaclav_29-Mar-10 5:38
Vaclav_29-Mar-10 5:38 
GeneralRe: buffer problems with CFile Pin
Krauze29-Mar-10 18:20
Krauze29-Mar-10 18:20 
QuestionHow to add command buttons to listbox? Pin
space03528-Mar-10 16:32
space03528-Mar-10 16:32 
AnswerRe: How to add command buttons to listbox? Pin
Adam Roderick J28-Mar-10 17:37
Adam Roderick J28-Mar-10 17:37 
GeneralRe: How to add command buttons to listbox? Pin
space0359-Apr-10 22:37
space0359-Apr-10 22:37 
QuestionPseudo Code for B Spline implementation Pin
Chidori-chan28-Mar-10 15:35
Chidori-chan28-Mar-10 15:35 
AnswerRe: Pseudo Code for B Spline implementation Pin
LunaticFringe28-Mar-10 15:46
LunaticFringe28-Mar-10 15:46 

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.