home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples.exe / Wintalk / VC / DataEdit.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-23  |  755 b   |  27 lines

  1. /*+==========================================================================
  2.   File:      DataEdit.h
  3.  
  4.   Summary:   Extends the default functionality of the WFC Edit control
  5.              by providing two extra methods.
  6.  
  7.   Classes:   DataEdit
  8.  
  9.   Functions: Append, TruncateOneCharFromEnd
  10.              
  11. ----------------------------------------------------------------------------
  12.   This file is part of the Microsoft NGWS Samples.
  13.  
  14.   Copyright (C) 1998-1999 Microsoft Corporation.  All rights reserved.
  15. ==========================================================================+*/
  16.  
  17. #ifndef NULL
  18. #define NULL 0
  19. #endif
  20.  
  21. __gc class DataEdit : public TextBox
  22. {
  23. public:
  24.     void Append(String *str);
  25.     void TruncateOneCharFromEnd();
  26. };
  27.