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

C / C++ / MFC

 
QuestionCan't set Window name when using CreateWindow Pin
BarryOg17-Sep-06 12:02
BarryOg17-Sep-06 12:02 
AnswerRe: Can't set Window name when using CreateWindow Pin
Roland Rüdenauer17-Sep-06 12:30
Roland Rüdenauer17-Sep-06 12:30 
GeneralRe: Can't set Window name when using CreateWindow Pin
BarryOg17-Sep-06 22:04
BarryOg17-Sep-06 22:04 
GeneralRe: Can't set Window name when using CreateWindow Pin
BarryOg18-Sep-06 9:07
BarryOg18-Sep-06 9:07 
QuestionTN035 - include afxres... winres ???? Pin
Vaclav_17-Sep-06 10:16
Vaclav_17-Sep-06 10:16 
Questionneed help with the cursor creating Pin
bloodwinner17-Sep-06 8:45
bloodwinner17-Sep-06 8:45 
Questionscreen Capture Pin
khaled-ahmad17-Sep-06 8:37
khaled-ahmad17-Sep-06 8:37 
Questionplaying with strings Pin
Yustme17-Sep-06 6:35
Yustme17-Sep-06 6:35 
Hi,

Im kinda playing with strings.

Im trying to generate this output in the console:

****
******
********
**********
************
**************
****************

And this is my code:

int _tmain(int argc, _TCHAR* argv[])
{

for( int row = 1; row <= 10; row++ )
{
for( int col = row*4; col < row*12; col+=4 )
//{
cout << '*';
cout << endl;
//}
}

system("pause");
return 0;
}

I was wondering what it is im doing wrong.

If anyone can tell me, plz do so.

Thanks in advance!
AnswerRe: playing with strings Pin
Nish Nishant17-Sep-06 6:41
sitebuilderNish Nishant17-Sep-06 6:41 
GeneralRe: playing with strings Pin
Yustme17-Sep-06 6:51
Yustme17-Sep-06 6:51 
QuestionExporting form a C++/CLR dll Pin
avimitrani17-Sep-06 5:03
avimitrani17-Sep-06 5:03 
Questionincluding gdiplus Pin
erfi17-Sep-06 2:06
erfi17-Sep-06 2:06 
AnswerRe: including gdiplus Pin
bob1697217-Sep-06 4:16
bob1697217-Sep-06 4:16 
AnswerRe: including gdiplus Pin
Christian Graus17-Sep-06 11:15
protectorChristian Graus17-Sep-06 11:15 
QuestionComboBox Problem Pin
mikobi17-Sep-06 1:54
mikobi17-Sep-06 1:54 
AnswerRe: ComboBox Problem [modified] Pin
Hamid_RT17-Sep-06 2:15
Hamid_RT17-Sep-06 2:15 
GeneralRe: ComboBox Problem Pin
mikobi17-Sep-06 19:54
mikobi17-Sep-06 19:54 
AnswerRe: ComboBox Problem Pin
Nibu babu thomas17-Sep-06 17:43
Nibu babu thomas17-Sep-06 17:43 
Questiongdiplus.h including problem [modified] Pin
erfi17-Sep-06 1:43
erfi17-Sep-06 1:43 
AnswerRe: gdiplus.h including problem Pin
Hamid_RT17-Sep-06 1:46
Hamid_RT17-Sep-06 1:46 
GeneralRe: gdiplus.h including problem Pin
erfi17-Sep-06 1:53
erfi17-Sep-06 1:53 
GeneralRe: gdiplus.h including problem Pin
Hamid_RT17-Sep-06 2:11
Hamid_RT17-Sep-06 2:11 
GeneralRe: gdiplus.h including problem Pin
erfi17-Sep-06 2:16
erfi17-Sep-06 2:16 
QuestionNew To C++ Pin
Mark_Murphy17-Sep-06 1:06
Mark_Murphy17-Sep-06 1:06 
AnswerRe: New To C++ Pin
Hamid_RT17-Sep-06 1:40
Hamid_RT17-Sep-06 1:40 

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.