home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!uvaarpa!darwin.sura.net!spool.mu.edu!yale.edu!newsserver.jvnc.net!gmd.de!Germany.EU.net!mcsun!uknet!bnr.co.uk!pipex!demon!wsti.demon.co.uk!davec
- From: davec@wsti.demon.co.uk (David Churcher)
- Newsgroups: bit.listserv.dbase-l
- Subject: Re: Question on using BROWSE on FOXPRO
- Message-ID: <728192305snz@wsti.demon.co.uk>
- Date: 27 Jan 93 22:47:09 GMT
- References: <01GTUP286PQA000K2R@utarlg.uta.edu>
- Sender: usenet@demon.co.uk
- Reply-To: davec@wsti.demon.co.uk
- Organization: Welcom Software Technology International
- Lines: 29
- X-Mailer: Simple NEWS 1.90 (ka9q DIS 1.18)
-
- In article <01GTUP286PQA000K2R@utarlg.uta.edu> C034CCM@UTARLG.UTA.EDU writes:
-
- > My question is : Is there anyway that I can move the highlighted
- > bar between the records within the BROWSE window
- > and press a defined key (F10) to change the
- > logical field PASS to .F. ,then remove that record
- > from the BROWSE window (not from the database) and
- > finally store the value .F. to the database file ?
-
- Something like this:
-
- ON KEY LABEL F10 DO notpassed
- BROWSE FOR Pass
- ON KEY LABEL F10
- RETURN
-
- PROCEDURE notpassed
- ON KEY LABEL F10
- IF .NOT. EOF()
- REPLACE Pass WITH .F.
- SKIP
- ENDIF
- SHOW WINDOW (WONTOP()) REFRESH
- ON KEY LABEL F10 DO notpassed
- RETURN
-
- The SHOW WINDOW ... REFRESH will refresh the browse display.
-
- Dave C.
-