home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / database / informix / 2949 < prev    next >
Encoding:
Internet Message Format  |  1993-01-12  |  1.7 KB

  1. Path: sparky!uunet!elroy.jpl.nasa.gov!swrinde!emory!emory!not-for-mail
  2. From: dave.snyder@snide.com (Dave Snyder)
  3. Newsgroups: comp.databases.informix
  4. Subject: Re: hidden password entry
  5. Date: 12 Jan 1993 22:33:04 -0500
  6. Organization: Mailing List Gateway
  7. Lines: 38
  8. Sender: walt@mathcs.emory.edu
  9. Distribution: world
  10. Message-ID: <1j02hgINNnnm@emory.mathcs.emory.edu>
  11. Reply-To: dave.snyder@snide.com (Dave Snyder)
  12. NNTP-Posting-Host: emory.mathcs.emory.edu
  13. X-Informix-List-ID: <list.1778>
  14.  
  15. Quoting System Admin...
  16. } Two questions:
  17. } One is any one keeping the archive of this news group and so where is it located ?
  18. Yes, there is an archive of all informix-list stuff kept on mathcs.emory.edu.
  19. This is an anonftp site.
  20.  
  21. } Secondly: I remember someone posted a routine a while ago which lets you do
  22. } hidden password entry.  Con somone repost it or sent me the sample ??
  23. I did, it's short so here it is again...
  24.  
  25. Here --------- Snip Here --------- Snip Here --------- Snip Here --------- Snip
  26. MAIN
  27.     DEFINE  c CHAR(1)           # Get character
  28.     DEFINE  psw CHAR(8)         # Store the password
  29.     DEFINE  i SMALLINT          # Counter
  30.  
  31.     OPTIONS PROMPT LINE 22
  32.     FOR i = 1 TO 8
  33.         PROMPT "Enter password: " FOR CHAR c
  34.         IF (c IS NULL) THEN     # Check for space or return
  35.             EXIT FOR
  36.         ELSE
  37.             LET psw = psw CLIPPED, c
  38.         END IF
  39.     END FOR
  40. END MAIN
  41. Here --------- Snip Here --------- Snip Here --------- Snip Here --------- Snip
  42.  
  43. DAS
  44. -- 
  45. David Snyder @ Snide Computer Services - Folcroft, PA          Current Release
  46.                                                                is db4glgen-3.9
  47. UUCP:  ..!uunet!das13!dave   INTERNET:  dave.snyder@snide.com
  48.  
  49.