OWNCOMBO.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /******************************************************************************
  2. *       This is a part of the Microsoft Source Code Samples. 
  3. *       Copyright (C) 1993 - 1997 Microsoft Corp.
  4. *       All rights reserved. 
  5. *       This source code is only intended as a supplement to 
  6. *       Microsoft Development Tools and/or WinHelp documentation.
  7. *       See these sources for detailed information regarding the 
  8. *       Microsoft samples programs.
  9. ******************************************************************************/
  10. /* Defines for menu items */
  11. #define IDM_EXIT    201
  12. #define IDM_ABOUT   202
  13. #define IDM_LISTBOX       300
  14. #define IDM_MULTILISTBOX  301
  15. #define IDM_COMBOBOX      302
  16. #define IDM_OWNERCOMBOBOX 303
  17. #define IDM_HELP          400
  18. /* Defines for dialog box ownerdraw controls. */
  19. #define ID_LISTBOX  1000
  20. #define ID_BLACK    1003
  21. #define ID_WHITE    1004
  22. #define ID_RED      1005
  23. #define ID_BLUE     1006
  24. #define ID_GREEN    1007
  25. /* Defines for combo box example */
  26. #define ID_COMBOBOX     1000
  27. #define ID_SINGLEEDIT   1001
  28. #define ID_TEXT1        1002
  29. #define ID_TEXT2        1003
  30. #define ID_STEPSBOX     1004
  31. #define ID_UNSLBUTTON   1005
  32. #define ID_NUMSELBUTTON 1006
  33. #define ID_TXTSELBUTTON 1007
  34. #define ID_FNDSELBUTTON 1008
  35. #define ID_CLRBUTTON    1009
  36. #define ID_ADDBUTTON    1010
  37. #define ID_DELETEBUTTON 1011
  38. #define ID_CPYBUTTON    1012
  39. #define ID_CBDIRBUTTON  1013
  40.                                 
  41. LONG FAR  PASCAL OwnComboWndProc(HWND, UINT, UINT, LONG);
  42. BOOL NEAR PASCAL OwnComboInit(HANDLE);
  43. BOOL FAR  PASCAL About(HWND, UINT, UINT, LONG);
  44. BOOL FAR  PASCAL ListBoxExample(HWND, UINT, UINT, LONG);
  45. BOOL FAR  PASCAL ComboBoxExample(HWND, UINT, UINT, LONG);
  46. BOOL FAR  PASCAL OwnerComboBoxExample(HWND, UINT, UINT, LONG);