home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n04 / multilin.exe / NUMBFORM.H < prev    next >
C/C++ Source or Header  |  1995-04-01  |  1KB  |  42 lines

  1. // numbform.h : header file
  2. //
  3.  
  4. int GetNumberFormat(LCID lcid, DWORD dwFlags, LPCTSTR lpValue, LPCTSTR lpFormat, LPTSTR lpNumber, UINT cchNumber);
  5.  
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CNumbFormat dialog
  8.  
  9. class CNumbFormat : public CDialog
  10. {
  11. // Construction
  12. public:
  13.     CNumbFormat(CWnd* pParent = NULL);   // standard constructor
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CNumbFormat)
  17.     enum { IDD = IDD_NUMBERFORM };
  18.         // NOTE: the ClassWizard will add data members here
  19.     //}}AFX_DATA
  20.  
  21.  
  22. // Overrides
  23.     // ClassWizard generated virtual function overrides
  24.     //{{AFX_VIRTUAL(CNumbFormat)
  25.     protected:
  26.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  27.     //}}AFX_VIRTUAL
  28.  
  29. // Implementation
  30. protected:
  31.     BOOL AppendNumberFormat(DWORD dwFlags);
  32.     void ShowSampleNumber( CString& szNumberFormat, DWORD dwNumberFlags);
  33.     
  34.     // Generated message map functions
  35.     //{{AFX_MSG(CNumbFormat)
  36.     virtual BOOL OnInitDialog();
  37.     afx_msg void OnChangeCustom();
  38.     afx_msg void OnDblclkNumbformats();
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.