John, What language is your program written in? If you're using eMbedded Visual C++ and MFC, all the controls created from a CWnd derived class have a SetFont method that accepts a CFont argument. The CFont method CreateFont will allow you to create your big font. Here's an example based on a big font I use: CFont bigFont bigFont.CreateFont(24, 0, 0, 0, FW_BOLD, 0, 0, 0, DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, CLIP_CHARACTER_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH | FF_DONTCARE, _T("Arial")); CEdit *editWindow = (CEdit*)GetDlgItem(IDC_EDIT_WINDOW); editWindow->SetFont(&bigFont); -Mike -----Original Message----- From: pic microcontroller discussion list [mailto:PICLIST@MITVMA.MIT.EDU] On Behalf Of John Pearson Sent: Monday, June 21, 2004 8:10 PM To: PICLIST@MITVMA.MIT.EDU Subject: [OT:] Fonts and Windows CE 2.0 Does anyone know how to change the font in Win CE 2.0? I have a few PDAs that run CE 2.0 but cannot get my program to change the fonts from microscopic (seems to be the default font) to something bigger. Thanks John -- http://www.piclist.com hint: The list server can filter out subtopics (like ads or off topics) for you. See http://www.piclist.com/#topics -- http://www.piclist.com hint: The PICList is archived three different ways. See http://www.piclist.com/#archives for details.