Skip to content

Instantly share code, notes, and snippets.

@Seth-Johnson
Created December 2, 2014 03:34
Show Gist options
  • Save Seth-Johnson/814cc777194d7de36e30 to your computer and use it in GitHub Desktop.
Save Seth-Johnson/814cc777194d7de36e30 to your computer and use it in GitHub Desktop.
// inside the WM_ACTIVATE case
bigFont = CreateFont(90, 20, 0, 0, 700, 0, 0, 0, 0, 0, 0, 0, 0, TEXT("Courier New"));
mediumFont = CreateFont(90, 20, 0, 0, 700, 0, 0, 0, 0, 0, 0, 0, 0, TEXT("Segoe UI"));
SendMessage(g_hEdit_Answer, WM_SETFONT, (WPARAM)bigFont, 0);
SendMessage(g_hSubmit_Answer, WM_SETFONT, (WPARAM)mediumFont, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment