GroupCombo.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #if !defined(AFX_GROUPCOMBO_H__42D00360_95BE_49B5_AA39_E3B37CFCFF5B__INCLUDED_)
  2. #define AFX_GROUPCOMBO_H__42D00360_95BE_49B5_AA39_E3B37CFCFF5B__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // GroupCombo.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CGroupCombo window
  10. class CGroupCombo : public CComboBox
  11. {
  12. // Construction
  13. public:
  14. CGroupCombo();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CGroupCombo)
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. public:
  25. virtual ~CGroupCombo();
  26. void FillCombo();
  27. void FillCombo(long lParentID, long lSpaces);
  28. BOOL SetCurSelOnItemData(long lItemData);
  29. int GetItemDataFromCursel();
  30. long m_lSkipGroupID;
  31. // Generated message map functions
  32. protected:
  33. //{{AFX_MSG(CGroupCombo)
  34. // NOTE - the ClassWizard will add and remove member functions here.
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. #endif // !defined(AFX_GROUPCOMBO_H__42D00360_95BE_49B5_AA39_E3B37CFCFF5B__INCLUDED_)