Click here to Skip to main content
15,922,145 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: List box won't scroll ...... Pin
Shay Harel14-Jul-03 8:29
Shay Harel14-Jul-03 8:29 
GeneralDirectShow .NET HELP!!!! Pin
Brian JR14-Jul-03 8:15
Brian JR14-Jul-03 8:15 
GeneralRe: DirectShow .NET HELP!!!! Pin
Andrew Walker14-Jul-03 15:30
Andrew Walker14-Jul-03 15:30 
GeneralRe: DirectShow .NET HELP!!!! Pin
Brian JR14-Jul-03 16:16
Brian JR14-Jul-03 16:16 
GeneralRe: DirectShow .NET HELP!!!! Pin
J. Dunlap14-Jul-03 21:15
J. Dunlap14-Jul-03 21:15 
GeneralRe: DirectShow .NET HELP!!!! Pin
Brian JR15-Jul-03 7:47
Brian JR15-Jul-03 7:47 
GeneralRe: DirectShow .NET HELP!!!! Pin
Brian JR15-Jul-03 8:54
Brian JR15-Jul-03 8:54 
GeneralLarge fonts in Windows XP Pin
Navin14-Jul-03 8:04
Navin14-Jul-03 8:04 
Anyone know how to detect whether the user has large fonts in Windows XP? I use the following code in 2000, but it doesn't work at all in XP:

float ItemTemplate::getFontProportion()
{
  static int normalSize = 96;
  int size = 96;

  HWND window = ::GetDesktopWindow();
  if(window)
  {
    HDC dc = ::GetWindowDC(window);

    if(dc)
      size = ::GetDeviceCaps(dc, LOGPIXELSX);

    ::ReleaseDC(window, dc);
  }

  return size / (float)normalSize;
}



"When a man sits with a pretty girl for an hour, it seems like a minute. But let him sit on a hot stove for a minute and it's longer than any hour. That's relativity." - Albert Einstein
GeneralCommunicating C++ and C# Pin
pdunn14-Jul-03 7:45
pdunn14-Jul-03 7:45 
GeneralModeless windows Pin
Jay Hova14-Jul-03 7:40
Jay Hova14-Jul-03 7:40 
GeneralRe: Modeless windows Pin
Joaquín M López Muñoz14-Jul-03 10:23
Joaquín M López Muñoz14-Jul-03 10:23 
GeneralRe: Modeless windows Pin
Toni7814-Jul-03 19:30
Toni7814-Jul-03 19:30 
GeneralRe: Modeless windows Pin
Jay Hova15-Jul-03 1:19
Jay Hova15-Jul-03 1:19 
GeneralRe: Modeless windows Pin
Toni7815-Jul-03 15:50
Toni7815-Jul-03 15:50 
GeneralRe: Modeless windows Pin
Jay Hova15-Jul-03 1:31
Jay Hova15-Jul-03 1:31 
GeneralRe: Modeless windows Pin
mlsteeves16-Jul-03 6:16
mlsteeves16-Jul-03 6:16 
GeneralCEdit carriage returns Pin
scontapay14-Jul-03 7:23
scontapay14-Jul-03 7:23 
GeneralRe: CEdit carriage returns Pin
valikac14-Jul-03 7:32
valikac14-Jul-03 7:32 
GeneralRe: CEdit carriage returns Pin
Shay Harel14-Jul-03 7:37
Shay Harel14-Jul-03 7:37 
GeneralRe: CEdit carriage returns Pin
scontapay14-Jul-03 7:48
scontapay14-Jul-03 7:48 
GeneralRe: CEdit carriage returns Pin
Shay Harel14-Jul-03 7:50
Shay Harel14-Jul-03 7:50 
GeneralRe: CEdit carriage returns Pin
scontapay14-Jul-03 7:52
scontapay14-Jul-03 7:52 
GeneralRe: CEdit carriage returns Pin
John R. Shaw14-Jul-03 7:46
John R. Shaw14-Jul-03 7:46 
GeneralRe: CEdit carriage returns Pin
scontapay14-Jul-03 7:49
scontapay14-Jul-03 7:49 
GeneralRe: CEdit carriage returns Pin
John R. Shaw14-Jul-03 8:06
John R. Shaw14-Jul-03 8:06 

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.