home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 24 / CD_ASCQ_24_0995.iso / vrac / homonlib.zip / EDSTR.INC < prev    next >
Text File  |  1995-04-13  |  571b  |  13 lines

  1. 'These constants are for use with the EdStr$() function to control user
  2. ' input.  The constants may be added together for combinations, such as
  3. ' EDUPPER + EDALPHA to allow only uppercase letters.
  4.  
  5. CONST EDANY = 0          'No restrictions on input.
  6. CONST EDUPPER = 1        'Converts any letters to uppercase.
  7. CONST EDALPHA = 2        'Allow the letters A-Z.
  8. CONST EDNUM = 4          'Allow the numbers 0-9.
  9. CONST EDDEC = 8          'Allow decimal points & negative signs (.-).
  10. CONST EDSPACE = 16       'Allow spaces.
  11.  
  12. DECLARE FUNCTION EdStr$(orig$, parm())
  13.