Windows Mobile Developer Network Forum

Windows Mobile Developer Network Forum
It is currently Thu Sep 09, 2010 10:57 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: MessageBox
PostPosted: Mon Apr 21, 2008 10:58 am 
Offline

Joined: Fri Apr 18, 2008 5:15 am
Posts: 15
Location: Bangalore,India
Hi All

I have a message box to display the errors. Now i want to add a scroll bar to the message box. Can any one tell me how to add a scroll bar to a message box or is there any messagebox with scrolling property?

Thanks in advance


Top
 Profile  
 
 Post subject:
PostPosted: Thu Apr 24, 2008 1:01 pm 
Offline

Joined: Fri Feb 02, 2007 10:31 am
Posts: 89
Location: Pune
Hi,

Make the Customize dialog box , Which looks like MessageBox and Having Scroll Bar.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Apr 25, 2008 5:15 am 
Offline

Joined: Fri Apr 18, 2008 5:15 am
Posts: 15
Location: Bangalore,India
Thank you.

I have one more question. Is it possible to change the font of the text which is to be displayed in message box?


Top
 Profile  
 
 Post subject:
PostPosted: Fri Apr 25, 2008 8:10 am 
Offline

Joined: Fri Feb 02, 2007 10:31 am
Posts: 89
Location: Pune
hi,

Yes We can Change the Font , I have shown here to change the Font of label.

Hope this may be helpful for you
Code:
HFONT g_hLabelFont;
g_hLabelFont = CreateLabelFontBold();
::SendDlgItemMessage(hDlg,IDC_STATIC1, WM_SETFONT,(int) g_hLabelFont, 0);


Code:
HFONT CreateLabelFontBold()
  {
    LOGFONT lf;
    memset(&lf, 0, sizeof(LOGFONT));
    HDC hdc = ::GetDC(NULL);
    lf.lfHeight = -9 * GetDeviceCaps(hdc, LOGPIXELSY) / 72;
    ::ReleaseDC(NULL, hdc);
    lf.lfWidth =0;
   lf.lfWeight = FW_SEMIBOLD;

    return CreateFontIndirect(&lf);
}


-joy


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group