home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!elroy.jpl.nasa.gov!swrinde!emory!emory!not-for-mail
- From: dave.snyder@snide.com (Dave Snyder)
- Newsgroups: comp.databases.informix
- Subject: Re: hidden password entry
- Date: 12 Jan 1993 22:33:04 -0500
- Organization: Mailing List Gateway
- Lines: 38
- Sender: walt@mathcs.emory.edu
- Distribution: world
- Message-ID: <1j02hgINNnnm@emory.mathcs.emory.edu>
- Reply-To: dave.snyder@snide.com (Dave Snyder)
- NNTP-Posting-Host: emory.mathcs.emory.edu
- X-Informix-List-ID: <list.1778>
-
- Quoting System Admin...
- }
- } Two questions:
- }
- } One is any one keeping the archive of this news group and so where is it located ?
- }
- Yes, there is an archive of all informix-list stuff kept on mathcs.emory.edu.
- This is an anonftp site.
-
- } Secondly: I remember someone posted a routine a while ago which lets you do
- } hidden password entry. Con somone repost it or sent me the sample ??
- }
- I did, it's short so here it is again...
-
- Here --------- Snip Here --------- Snip Here --------- Snip Here --------- Snip
- MAIN
- DEFINE c CHAR(1) # Get character
- DEFINE psw CHAR(8) # Store the password
- DEFINE i SMALLINT # Counter
-
- OPTIONS PROMPT LINE 22
- FOR i = 1 TO 8
- PROMPT "Enter password: " FOR CHAR c
- IF (c IS NULL) THEN # Check for space or return
- EXIT FOR
- ELSE
- LET psw = psw CLIPPED, c
- END IF
- END FOR
- END MAIN
- Here --------- Snip Here --------- Snip Here --------- Snip Here --------- Snip
-
- DAS
- --
- David Snyder @ Snide Computer Services - Folcroft, PA Current Release
- is db4glgen-3.9
- UUCP: ..!uunet!das13!dave INTERNET: dave.snyder@snide.com
-
-