Click here to Skip to main content
15,914,795 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionSuppressing accelerator keys temporarily Pin
Graham Shanks29-May-08 6:09
Graham Shanks29-May-08 6:09 
AnswerRe: Suppressing accelerator keys temporarily Pin
Graham Shanks30-May-08 0:45
Graham Shanks30-May-08 0:45 
QuestionPbm with focus when showing interfaces created inside an extension DLL Pin
Ahmed Charfeddine29-May-08 5:25
Ahmed Charfeddine29-May-08 5:25 
Questionthere is something seriously wrong with this... Pin
Pathetic29-May-08 5:24
Pathetic29-May-08 5:24 
QuestionRe: there is something seriously wrong with this... Pin
David Crow29-May-08 5:25
David Crow29-May-08 5:25 
AnswerRe: there is something seriously wrong with this... Pin
Pathetic29-May-08 12:38
Pathetic29-May-08 12:38 
AnswerRe: there is something seriously wrong with this... Pin
jeron129-May-08 5:31
jeron129-May-08 5:31 
AnswerRe: there is something seriously wrong with this... Pin
Rajesh R Subramanian29-May-08 6:00
professionalRajesh R Subramanian29-May-08 6:00 
There were a few syntax errors in your program. Besides that, if you were looking to start with a simple multiplication program, I just wrote one for you:
#include <iostream>

void main()
{
	int number, limit = 10;
	cout<<"Multiplication Chart"<<endl<<endl;
	cout<<"please enter a number to view multiplication chart ";
	cin>>number;
	cout<<endl;
	for(int i=1; i<= limit; ++i)
	{
		cout<<number<<" x "<<i<< " = "<<number*i<<endl;
	}
	cout<<endl;
}



Nobody can give you wiser advice than yourself. - Cicero
.·´¯`·->Rajesh<-·´¯`·.
Codeproject.com: Visual C++ MVP

GeneralRe: there is something seriously wrong with this... Pin
Pathetic29-May-08 12:37
Pathetic29-May-08 12:37 
Questionkeep item selected when list control loses focus Pin
SWDevil29-May-08 4:15
SWDevil29-May-08 4:15 
QuestionRe: keep item selected when list control loses focus Pin
David Crow29-May-08 4:32
David Crow29-May-08 4:32 
News[Message Deleted] Pin
Apu Nahasapeemapetilon29-May-08 3:02
Apu Nahasapeemapetilon29-May-08 3:02 
QuestionRe: !! Pin
Michael Schubert29-May-08 3:11
Michael Schubert29-May-08 3:11 
RantThat's even worse than your last performance. Pin
CPallini29-May-08 3:15
mveCPallini29-May-08 3:15 
GeneralRe: [Message Deleted] Pin
ThatsAlok20-Jul-09 0:25
ThatsAlok20-Jul-09 0:25 
QuestionReading a bluetooth Pin
Alex Cutovoi29-May-08 2:30
Alex Cutovoi29-May-08 2:30 
AnswerRe: Reading a bluetooth Pin
KarstenK29-May-08 3:03
mveKarstenK29-May-08 3:03 
GeneralRe: Reading a bluetooth Pin
Alex Cutovoi29-May-08 3:51
Alex Cutovoi29-May-08 3:51 
AnswerRe: Reading a bluetooth Pin
Rajesh R Subramanian29-May-08 3:04
professionalRajesh R Subramanian29-May-08 3:04 
GeneralRe: Reading a bluetooth Pin
Cedric Moonen29-May-08 7:41
Cedric Moonen29-May-08 7:41 
GeneralRe: Reading a bluetooth Pin
Rajesh R Subramanian29-May-08 21:25
professionalRajesh R Subramanian29-May-08 21:25 
GeneralRe: Reading a bluetooth Pin
ThatsAlok19-Jul-09 17:22
ThatsAlok19-Jul-09 17:22 
QuestionHow can I debug a console application in VC++ ? Pin
SherTeks29-May-08 2:03
SherTeks29-May-08 2:03 
AnswerRe: How can I debug a console application in VC++ ? Pin
Cedric Moonen29-May-08 2:05
Cedric Moonen29-May-08 2:05 
AnswerRe: How can I debug a console application in VC++ ? Pin
Nibu babu thomas29-May-08 2:06
Nibu babu thomas29-May-08 2:06 

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.