home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / VISBUILD / OASEARCH / OANBCLR.CPV < prev    next >
Text File  |  1995-05-15  |  2KB  |  30 lines

  1. //****************************************************************************         
  2. // OAContractorView Class - C++ Member Function File (oanbclr.cpv)           *
  3. //                                                                           *         
  4. // COPYRIGHT: Copyright (C) International Business Machines Corp., 1994,1995 *         
  5. //                                                                           *         
  6. // DISCLAIMER OF WARRANTIES:                                                 *         
  7. //   The following [enclosed] code is sample code created by IBM             *         
  8. //   Corporation.  This sample code is not part of any standard IBM product  *         
  9. //   and is provided to you solely for the purpose of assisting you in the   *         
  10. //   development of your applications.  The code is provided "AS IS",        *         
  11. //   without warranty of any kind.  IBM shall not be liable for any damages  *         
  12. //   arising out of your use of the sample code, even if they have been      *         
  13. //   advised of the possibility of such damages.                             *         
  14. //****************************************************************************         
  15. //NOTE: WE RECOMMEND USING A FIXED-SPACE FONT TO LOOK AT THE SOURCE.                   
  16. //                                                                                     
  17. // Source code to clear entry fields on OAContractorView Contact page
  18.  
  19. void OAContractorView::resetFields()
  20. {
  21.   iLastEF->removeAll();
  22.   iFirstEF->removeAll();
  23.   iMidEF->removeAll();
  24.   iStreetEF->removeAll();
  25.   iCityEF->removeAll();
  26.   iStateEF->removeAll();
  27.   iZipEF->removeAll();
  28.   iPhoneEF->removeAll();
  29. }
  30.