Click here to Skip to main content
15,899,825 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: List all window handles from a parent like Spy++ Pin
prasad_som14-Mar-07 19:21
prasad_som14-Mar-07 19:21 
AnswerRe: List all window handles from a parent like Spy++ Pin
ThatsAlok14-Mar-07 19:28
ThatsAlok14-Mar-07 19:28 
AnswerRe: List all window handles from a parent like Spy++ Pin
Hamid_RT15-Mar-07 19:04
Hamid_RT15-Mar-07 19:04 
GeneralRe: List all window handles from a parent like Spy++ Pin
ThatsAlok15-Mar-07 21:09
ThatsAlok15-Mar-07 21:09 
Questiondrawing a sin graph in vc++ Pin
l_d14-Mar-07 18:39
l_d14-Mar-07 18:39 
AnswerRe: drawing a sin graph in vc++ Pin
Parthi_Appu14-Mar-07 18:52
Parthi_Appu14-Mar-07 18:52 
AnswerRe: drawing a sin graph in vc++ Pin
Parthi_Appu14-Mar-07 19:18
Parthi_Appu14-Mar-07 19:18 
AnswerRe: drawing a sin graph in vc++ Pin
cp987614-Mar-07 21:48
cp987614-Mar-07 21:48 
sin(x) gives sine of x where x is in radians. Your plot would be sampling sin(x) about 3 times per cycle so you would be getting a very spikey graph. If you want to plot sin(x) with x in degrees, use
y = sin(pi*x/180);

Alternatively plot y = sin(x) with x going from 0 to 2*pi in say 100 steps - should give you a nice plot.

Peter
GeneralRe: drawing a sin graph in vc++ Pin
Parthi_Appu14-Mar-07 22:03
Parthi_Appu14-Mar-07 22:03 
GeneralRe: drawing a sin graph in vc++ Pin
cp987614-Mar-07 23:18
cp987614-Mar-07 23:18 
GeneralRe: drawing a sin graph in vc++ Pin
l_d15-Mar-07 9:49
l_d15-Mar-07 9:49 
AnswerRe: drawing a sin graph in vc++ Pin
toxcct14-Mar-07 22:14
toxcct14-Mar-07 22:14 
GeneralRe: drawing a sin graph in vc++ Pin
l_d15-Mar-07 9:50
l_d15-Mar-07 9:50 
Questionchild -parent dialog Pin
janpoo14-Mar-07 18:24
janpoo14-Mar-07 18:24 
AnswerRe: child -parent dialog Pin
_AnsHUMAN_ 14-Mar-07 18:34
_AnsHUMAN_ 14-Mar-07 18:34 
GeneralRe: child -parent dialog Pin
ThatsAlok14-Mar-07 19:29
ThatsAlok14-Mar-07 19:29 
GeneralRe: child -parent dialog Pin
_AnsHUMAN_ 14-Mar-07 19:51
_AnsHUMAN_ 14-Mar-07 19:51 
GeneralRe: child -parent dialog Pin
ThatsAlok14-Mar-07 22:45
ThatsAlok14-Mar-07 22:45 
AnswerRe: child -parent dialog Pin
toxcct14-Mar-07 22:16
toxcct14-Mar-07 22:16 
QuestionInstallation through MFC code Pin
deeps_cute14-Mar-07 17:00
deeps_cute14-Mar-07 17:00 
AnswerRe: Installation through MFC code Pin
Christian Graus14-Mar-07 18:10
protectorChristian Graus14-Mar-07 18:10 
AnswerRe: Installation through MFC code Pin
Hamid_RT14-Mar-07 18:38
Hamid_RT14-Mar-07 18:38 
GeneralRe: Installation through MFC code Pin
deeps_cute14-Mar-07 19:53
deeps_cute14-Mar-07 19:53 
GeneralRe: Installation through MFC code Pin
ThatsAlok14-Mar-07 22:46
ThatsAlok14-Mar-07 22:46 
GeneralRe: Installation through MFC code Pin
David Crow15-Mar-07 3:05
David Crow15-Mar-07 3: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.