Click here to Skip to main content
16,005,734 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: what is a smart pointer Pin
qfegd4-Nov-05 6:16
qfegd4-Nov-05 6:16 
GeneralRe: what is a smart pointer Pin
toxcct4-Nov-05 10:00
toxcct4-Nov-05 10:00 
GeneralRe: what is a smart pointer Pin
qfegd4-Nov-05 14:13
qfegd4-Nov-05 14:13 
QuestionHow to calculate the monitor size ? Pin
pradish4-Nov-05 0:47
pradish4-Nov-05 0:47 
QuestionRe: How to calculate the monitor size ? Pin
David Crow4-Nov-05 4:54
David Crow4-Nov-05 4:54 
AnswerRe: How to calculate the monitor size ? Pin
vikas amin4-Nov-05 19:29
vikas amin4-Nov-05 19:29 
AnswerRe: How to calculate the monitor size ? Pin
ThatsAlok6-Nov-05 21:08
ThatsAlok6-Nov-05 21:08 
QuestionHow to calculate the monitor size ? Pin
pradish4-Nov-05 0:47
pradish4-Nov-05 0:47 
Hi all

I'am using these member functions of CDC class to calculate the
monitor size. none of these functions return the correct value.

I need to calculate the exact size of the monitor.

you can also use this function in your PC and try.

double CMonSizeView::CalcSize()
{
CClientDC dc(this);

int width_mm = dc.GetDeviceCaps(HORZSIZE);//width in mm
int vert_mm = dc.GetDeviceCaps(VERTSIZE);//height in mm

//calculate the diagonal length in mm
double d = sqrt(width_mm*width_mm + vert_mm *vert_mm);
d = d*0.0393700787;//convert it in to inches


return d;
}
Cry | :((

please give your feeback and suggestions.


thanks and regards
pradish
AnswerRe: How to calculate the monitor size ? Pin
vikas amin4-Nov-05 2:01
vikas amin4-Nov-05 2:01 
QuestionERROR please help Pin
shivditya4-Nov-05 0:27
shivditya4-Nov-05 0:27 
AnswerRe: ERROR please help Pin
vikas amin4-Nov-05 2:06
vikas amin4-Nov-05 2:06 
GeneralRe: ERROR please help Pin
shivditya4-Nov-05 2:43
shivditya4-Nov-05 2:43 
QuestionPLEASE HELP ME OUT?????????? Pin
shivditya4-Nov-05 3:48
shivditya4-Nov-05 3:48 
QuestionRe: ERROR please help Pin
David Crow4-Nov-05 5:06
David Crow4-Nov-05 5:06 
QuestionRe: ERROR please help Pin
shivditya4-Nov-05 18:32
shivditya4-Nov-05 18:32 
QuestionRe: ERROR please help Pin
David Crow6-Nov-05 2:41
David Crow6-Nov-05 2:41 
Questionchange the format of media file Pin
vineet singh3-Nov-05 23:19
vineet singh3-Nov-05 23:19 
AnswerRe: change the format of media file Pin
Blake Miller4-Nov-05 10:51
Blake Miller4-Nov-05 10:51 
QuestionVC++ Pin
inew3-Nov-05 22:30
inew3-Nov-05 22:30 
AnswerRe: VC++ Pin
Rob Caldecott3-Nov-05 22:33
Rob Caldecott3-Nov-05 22:33 
AnswerRe: VC++ Pin
vikas amin4-Nov-05 1:41
vikas amin4-Nov-05 1:41 
AnswerRe: VC++ Pin
ThatsAlok6-Nov-05 21:22
ThatsAlok6-Nov-05 21:22 
Question"Got Focus" on a tab page Pin
Ger Hayden3-Nov-05 22:02
Ger Hayden3-Nov-05 22:02 
AnswerRe: "Got Focus" on a tab page Pin
Barm3-Nov-05 22:15
Barm3-Nov-05 22:15 
GeneralRe: "Got Focus" on a tab page Pin
vikas amin4-Nov-05 2:14
vikas amin4-Nov-05 2:14 

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.