home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 July / PCWorld_1999-07_cd.bin / 602 / WBPERSON / data1.cab / SDK_Files / wbwizard / sources / WBMFCSSA.H < prev    next >
C/C++ Source or Header  |  1999-06-09  |  1KB  |  55 lines

  1. // wbmfcssa.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CSelSrvrApplDlg dialog
  6.  
  7. class CSelSrvrApplDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CSelSrvrApplDlg(const char *UserName, const char *Password, const char *Appl, CWnd* pParent = NULL);   // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CSelSrvrApplDlg)
  15.     enum { IDD = IDD_SRVRAPPL };
  16.         // NOTE: the ClassWizard will add data members here
  17.     //}}AFX_DATA
  18.  
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CSelSrvrApplDlg)
  23.     protected:
  24.     //}}AFX_VIRTUAL
  25.  
  26. // Implementation
  27. protected:
  28.     BOOL m_NoAppl;
  29.     const char * m_Appl;
  30.     const char * m_Password;
  31.     const char * m_UserName;
  32.     tobjname m_SelServerName;
  33.     HTREEITEM m_SelServer;
  34.     BOOL IsAppl(HTREEITEM hItem = NULL);
  35.     CTreeCtrl * m_SrvrTree;
  36.  
  37.     // Generated message map functions
  38.     //{{AFX_MSG(CSelSrvrApplDlg)
  39.     virtual BOOL OnInitDialog();
  40.     afx_msg void OnSelchanged(NMHDR* pNMHDR, LRESULT* pResult);
  41.     afx_msg void OnItemexpanding(NMHDR* pNMHDR, LRESULT* pResult);
  42.     afx_msg void OnDblclk(NMHDR* pNMHDR, LRESULT* pResult);
  43.     afx_msg void OnChangeEdit();
  44.     afx_msg void OnDestroy();
  45.     virtual void OnOK();
  46.     //}}AFX_MSG
  47.     BOOL FillSrvrTree();
  48.  
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.  
  52. BOOL WBSelSrvrAppl(const char *UserName = NULL, const char *Password = NULL, const char *Appl = NULL);
  53. extern "C" DllImport void WINAPI small_string(char *s, BOOL captfirst);
  54.  
  55.