Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- M E W E L - <b>int pascal checkmenuitem(hmenu hmenu, word idcheckitem, word wcheck) </b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
int pascal CheckMenuItem(HMENU hMenu, WORD idCheckItem, WORD wCheck)  

  This function places a checkmark next to a pulldown menu item, or
removes the checkmark.

Parameters
  hMenu is the handle of the menu which contains the menu item.
  idCheckItem is the identifier or position of the menu item to query.
  wCheck can be a combination or either MF_CHECKED or MF_UNCHECKED and
   MF_BYPOSITION or MF_BYCOMMAND.

Returns
  Nothing.

Example
  CheckMenuItem(GetMenu(hWndMain), ID_BOLD, MF_BYCOMMAND | MF_CHECKED);

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson