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

C / C++ / MFC

 
AnswerRe: Ftprenamefile error 12003!!! Pin
Michael Dunn12-Apr-06 15:20
sitebuilderMichael Dunn12-Apr-06 15:20 
QuestionC++ Mouse Event Listener Pin
jonesap512-Apr-06 12:43
jonesap512-Apr-06 12:43 
AnswerRe: C++ Mouse Event Listener Pin
bob1697212-Apr-06 14:22
bob1697212-Apr-06 14:22 
QuestionHow to convert CString to char Pin
masnu12-Apr-06 11:53
masnu12-Apr-06 11:53 
AnswerRe: How to convert CString to char Pin
James R. Twine12-Apr-06 14:43
James R. Twine12-Apr-06 14:43 
AnswerRe: How to convert CString to char Pin
Hamid_RT12-Apr-06 20:44
Hamid_RT12-Apr-06 20:44 
Questionplotting in Visual Studio C++ Pin
ilda lapi12-Apr-06 11:14
ilda lapi12-Apr-06 11:14 
AnswerRe: plotting in Visual Studio C++ Pin
masnu12-Apr-06 12:06
masnu12-Apr-06 12:06 
You have to research device contexts. All "plotting", or any graphical output for that matter, in Windows is accoplished through a device context.

 CDC *pDC;<br />
<br />
pDC->MoveTo(x1, y1);     //Move to point(x1,y1)<br />
pDC->LineTo(x2,y2)             //Draw a line from (x1,y1) to (x2,y2)<br />
pDC->Ellipse();                //Draw an ellipse (circle)<br />
pDC->Rectangle();              //Draw a rectangle 


There are many more features to device contexts which should allow you to do what you want. Any good Visual C++ book should talk about DC and I know this web site has A LOT of useful examples.

Hope that helps.

Paul
AnswerRe: plotting in Visual Studio C++ Pin
El Corazon12-Apr-06 13:28
El Corazon12-Apr-06 13:28 
QuestionDevice drivers: MSVAD sample drivers Pin
imsaady12-Apr-06 10:04
imsaady12-Apr-06 10:04 
QuestionEditing long lines in VC++ 6.0 Pin
Ger Hayden12-Apr-06 9:22
Ger Hayden12-Apr-06 9:22 
AnswerRe: Editing long lines in VC++ 6.0 Pin
David Crow12-Apr-06 9:39
David Crow12-Apr-06 9:39 
GeneralRe: Editing long lines in VC++ 6.0 Pin
Ger Hayden12-Apr-06 9:50
Ger Hayden12-Apr-06 9:50 
QuestionVC++ 6 project works in debug but not release Pin
smikesmith12-Apr-06 8:56
smikesmith12-Apr-06 8:56 
AnswerRe: VC++ 6 project works in debug but not release Pin
prasad_som12-Apr-06 19:21
prasad_som12-Apr-06 19:21 
QuestionPlease Help! What would cause Member Variable problem? Pin
Charlie Curtis12-Apr-06 8:54
Charlie Curtis12-Apr-06 8:54 
QuestionRe: Please Help! What would cause Member Variable problem? Pin
David Crow12-Apr-06 9:10
David Crow12-Apr-06 9:10 
AnswerRe: Please Help! What would cause Member Variable problem? Pin
Charlie Curtis12-Apr-06 9:26
Charlie Curtis12-Apr-06 9:26 
GeneralRe: Please Help! What would cause Member Variable problem? Pin
David Crow12-Apr-06 9:34
David Crow12-Apr-06 9:34 
GeneralRe: Please Help! What would cause Member Variable problem? Pin
Charlie Curtis12-Apr-06 10:10
Charlie Curtis12-Apr-06 10:10 
GeneralRe: Please Help! What would cause Member Variable problem? Pin
David Crow12-Apr-06 10:17
David Crow12-Apr-06 10:17 
QuestionProblem when Change number of arguments of MFC activeX control's exposed method Pin
Michael Tang12-Apr-06 8:48
Michael Tang12-Apr-06 8:48 
AnswerRe: Problem when Change number of arguments of MFC activeX control's exposed method Pin
Michael Tang12-Apr-06 9:42
Michael Tang12-Apr-06 9:42 
AnswerRe: Problem when Change number of arguments of MFC activeX control's exposed method Pin
prasad_som12-Apr-06 19:41
prasad_som12-Apr-06 19:41 
GeneralRe: Problem when Change number of arguments of MFC activeX control's exposed method Pin
Michael Tang13-Apr-06 4:05
Michael Tang13-Apr-06 4:05 

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.