home *** CD-ROM | disk | FTP | other *** search
- //
- // Module Name: AS_POSIT.COD
- // Description: Record positioning (Ask at runtime)
- //
- {
- //
- // Enum string constants for international translation
- //
- enum pause_msg1 = "Database not in use. ",
- pause_msg2 = "Can't use this option - No index files are open.",
- pause_msg3 = "All fields were blank.",
- pause_msg4 = "Record not found.",
- order_msg1 = "Index order: "
- order_msg2 = "Database is in natural order",
- order_msg3 = "Listed below are the first 16 fields.",
- fld_string = "= Char = Date = Logic = Num = Float = Memo ",
- Posit_bar1 = " Position by ",
- Posit_bar3 = " SEEK Record", Posit_msg3 = "Search on index key",
- Posit_bar4 = " GOTO Record", Posit_msg4 = "Position to specific record",
- Posit_bar5 = " LOCATE Record ", Posit_msg5 = "Locate record for condition",
- Posit_bar6 = " Change index order ", Posit_msg6 = "Reassign current index order",
- Posit2_wnd1 = "Key expression:",
- Posit2_wnd2 = " Index Order Natural Order ",
- Posit2_wnd3 = "Enter the key expression to search for:",
- Posit2_bar1 = " GOTO:",
- Posit2_bar3 = " TOP", Posit2_msg3 = "GOTO Top of File",
- Posit2_bar4 = " BOTTOM", Posit2_msg4 = "GOTO Bottom of File",
- Posit2_bar5 = " Record # ", Posit2_msg5 = "GOTO A Specific Record",
- Posit2_wnd4 = "Max. Record # = ",
- Posit2_wnd5 = "Record to GOTO",
- Posit2_wnd6 = "ie. ALL, NEXT <n>, and REST",
- Posit2_wnd7 = "Scope:",
- Posit2_wnd8 = "For: ",
- Posit2_wnd9 = "While:"
- ;
- var ln_frow, ln_fcol;
- }
- PROCEDURE Position
- *{replicate("-",69)}
- * Record positioning (Ask at runtime)
- *{replicate("-",69)}
-
- IF LEN(DBF()) = 0{tabto(41)}&& Make sure a DBF is open
- DO Pause WITH "{pause_msg1}"
- RETURN
- ENDIF
-
- IF EOF(){tabto(41)}&& If end of file, go to top
- GOTO TOP
- ENDIF
-
- ll_deli = SET("DELIMITERS") = "ON"
- SET DELIMITERS OFF
- ll_space = SET("SPACE") = "ON"
- SET SPACE ON
-
- // Frame row position
- {ln_frow=8;}
- // Frame col position
- {ln_fcol=30;//28}
- ln_type = 0{tabto(41)}&& Sublevel selection
- ln_rkey = READKEY(){tabto(41)}&& Test for ESC or Return
- ln_rec = RECNO(){tabto(41)}&& DBF record number
- ln_num = 0{tabto(41)}&& For input of a number
- ll_logic =.T.{tabto(41)}&& For input of a logical
- ld_date = DATE(){tabto(41)}&& For input of a date
- lc_option = '0'{tabto(41)}&& Main option ie. Seek, Goto and Locate
- lc_ln1 = SPACE(100){tabto(41)}&& For input of a character
-
- *-- Scope ie. ALL, REST, NEXT <n>
- STORE SPACE(10) TO lc_scp
-
- *-- 1 = Character SEEK, 2 = For clause, 3 = While clause
- STORE SPACE(40) TO lc_ln2, lc_ln3
- lc_temp = ""
- gc_scope = ""
- @ 0,00 SAY "{order_msg1}"+IIF(""=ORDER(),"{order_msg2}",ORDER())
- @ 1,00 SAY "{order_msg3}"
- lc_temp=REPLICATE(CHR(196),19)
- @ 2,0 SAY CHR(218)+lc_temp+CHR(194)+lc_temp+CHR(194)+lc_temp+CHR(194)+lc_temp
- ln_num=240
-
- *-- Build a list of fields in the current DBF
- DO WHILE ln_num < 560
- lc_temp = FIELD( (ln_num-240)/20 +1)
- @ (ln_num/80),MOD(ln_num,80) SAY CHR(179)+;
- lc_temp+SPACE(11-LEN(lc_temp))+;
- SUBSTR("{fld_string}",;
- AT(TYPE(lc_temp),"CDLNFMU")*8-7,8)
- ln_num=ln_num+20
- ENDDO
- ln_num=1
-
- DEFINE POPUP Posit1 FROM {ln_frow},{ln_fcol}
- DEFINE BAR 1 OF Posit1 PROMPT "{posit_bar1}" SKIP
- DEFINE BAR 2 OF Posit1 PROMPT REPLICATE(CHR(196),21) SKIP
- DEFINE BAR 3 OF Posit1 PROMPT "{posit_bar3}" MESSAGE "{posit_msg3}" SKIP FOR ""=ORDER()
- DEFINE BAR 4 OF Posit1 PROMPT "{posit_bar4}" MESSAGE "{posit_msg4}"
- DEFINE BAR 5 OF Posit1 PROMPT "{posit_bar5}" MESSAGE "{posit_msg5}"
- DEFINE BAR 6 OF Posit1 PROMPT REPLICATE(CHR(196),21) SKIP
- DEFINE BAR 7 OF Posit1 PROMPT "{posit_bar6}" MESSAGE "{posit_msg6}"
- DEFINE BAR 8 OF Posit1 PROMPT " Done positioning " ;
- MESSAGE "Press return here, when ready " +;
- "(ESC cancels selections, except index order)"
- ON SELECTION POPUP Posit1 DEACTIVATE POPUP
-
- SET CONFIRM ON
- gn_send = 0
- DO WHILE gn_send = 0
-
- ACTIVATE POPUP Posit1
- gn_send = BAR()
- lc_option = ltrim(str(gn_send)){tabto(41)}&& Convert bar# to string
-
- IF gn_send = 0
- gc_scope=""
- GOTO ln_rec
- EXIT
- ENDIF
-
- gn_send=0
-
- DO CASE
-
- CASE lc_option='3'{tabto(41)}&& Seek record
-
- IF LEN(NDX(1))=0 .AND. LEN(MDX(1))=0
- DO Pause WITH "{pause_msg2}"
- LOOP
- ENDIF
- lc_ln1=SPACE(100)
- DEFINE WINDOW Posit2 FROM {ln_frow},{ln_fcol-16} TO {ln_frow+9},{ln_fcol+37} DOUBLE
- ACTIVATE WINDOW Posit2
- keyexpr=""
- lc_type = Get_Type( ORDER() )
- @ 1,1 SAY "{posit2_wnd1}"
- @ 2,1
- ?? keyexpr FUNCTION "V50"
- SET CONFIRM ON
- @ 5,1 SAY "{posit2_wnd3}"
- DO CASE
- CASE lc_type = "C"
- @ 6,1 GET lc_ln1 FUNCTION "S50"
- CASE lc_type = "D"
- @ 6,1 GET ld_date FUNCTION "D"
- CASE lc_type = "L"
- @ 6,1 GET ll_logic
- CASE lc_type = "N" .OR. lc_type = "F"
- @ 6,1 GET ln_num PICTURE "################.####"
- ENDCASE
- SET CURSOR ON
- READ
- SET CURSOR OFF
- SET CONFIRM OFF
- RELEASE WINDOWS Posit2
-
- IF .NOT. (READKEY() = 12 .OR. READKEY() = 268)
- DO CASE
- CASE lc_type = "C"
- SEEK TRIM(lc_ln1)
- CASE lc_type = "D"
- SEEK ld_date
- CASE lc_type = "L"
- SEEK ll_logic
- CASE lc_type = "N" .OR. lc_type = "F"
- SEEK ln_num
- ENDCASE
- ELSE
- GOTO TOP
- LOOP
- ENDIF
-
- CASE lc_option='4'{tabto(41)}&& Go to
-
- ln_type=1
- DEFINE POPUP Posit2 FROM {ln_frow},{ln_fcol}
- DEFINE BAR 1 OF Posit2 PROMPT "{posit2_bar1}" SKIP
- DEFINE BAR 2 OF Posit2 PROMPT REPLICATE(CHR(196),10) SKIP
- DEFINE BAR 3 OF Posit2 PROMPT "{posit2_bar3}" MESSAGE "{posit2_msg3}"
- DEFINE BAR 4 OF Posit2 PROMPT "{posit2_bar4}" MESSAGE "{posit2_msg4}"
- DEFINE BAR 5 OF Posit2 PROMPT "{posit2_bar5}" MESSAGE "{posit2_msg5}"
- ON SELECTION POPUP Posit2 DEACTIVATE POPUP
-
- ACTIVATE POPUP posit2
- gn_send = BAR()
- ln_type = gn_send
- gn_send=0
- IF ln_type <> 0{tabto(41)}&& If the user selected a bar
-
- DO CASE
-
- CASE ln_type=5{tabto(41)}&& GOTO A Specific Record
-
- DEFINE WINDOW Posit2 FROM {ln_frow},{ln_fcol-4} TO {ln_frow+5},{ln_fcol+20} DOUBLE
- ACTIVATE WINDOW Posit2
- ln_num=0
- @ 3,1 SAY "{posit2_wnd4}"+LTRIM(STR(RECCOUNT()))
- @ 1,1 SAY "{posit2_wnd5}" GET ln_num PICT "######" RANGE 1,RECCOUNT()
- SET CURSOR ON
- READ
- SET CURSOR OFF
- IF .NOT. (READKEY() = 12 .OR. READKEY() = 268)
- GOTO ln_num
- ENDIF
- RELEASE WINDOWS Posit2
-
- CASE ln_type=4{tabto(41)}&& GOTO Bottom of file
- GOTO BOTTOM
-
- CASE ln_type=3{tabto(41)}&& GOTO Top of file
- GOTO TOP
-
- ENDCASE
-
- ENDIF
-
- CASE lc_option='5'{tabto(41)}&& Locate
-
- DEFINE WINDOW Posit2 FROM {ln_frow},{ln_fcol-14} TO {ln_frow+6},{ln_fcol+36} DOUBLE
- ACTIVATE WINDOW Posit2
- @ 1,19 SAY "{posit2_wnd6}"
- @ 1,01 SAY "{posit2_wnd7}" GET lc_scp
- @ 2,01 SAY "{posit2_wnd8}" GET lc_ln2
- @ 3,01 SAY "{posit2_wnd9}" GET lc_ln3
- SET CURSOR ON
- READ
- SET CURSOR OFF
-
- IF .NOT. (READKEY() = 12 .OR. READKEY() = 268)
- lc_temp=TRIM(lc_scp)
- lc_temp=lc_temp + IIF(LEN(TRIM(lc_ln2)) > 0," FOR "+TRIM(lc_ln2),"")
- lc_temp=lc_temp + IIF(LEN(TRIM(lc_ln3)) > 0," WHILE "+TRIM(lc_ln3),"")
- IF .NOT. ISBLANK( lc_temp )
- LOCATE &lc_temp.
- IF .NOT. EOF()
- gc_scope=lc_temp
- ENDIF
- ELSE
- DO Pause WITH "{pause_msg3}"
- ENDIF
- ENDIF
- RELEASE WINDOW Posit2
-
- CASE lc_option='7'{tabto(41)}&& Change index order
- DO Showtag
- IF LASTKEY() = 27
- LOOP
- ENDIF
- GOTO TOP
- ln_rec=RECNO()
- @ 0,00
- @ 0,00 SAY "{order_msg1}"+IIF(""=ORDER(),"{order_msg2}",ORDER())
-
- CASE lc_option='8'{tabto(41)}&& User wants to exit
- gn_send=1{tabto(41)}&& Signal end of loop
-
- ENDCASE
-
- IF EOF()
- DO Pause WITH "{pause_msg4}"
- GOTO ln_rec
- gn_send=0
- ENDIF
- ENDDO
- SET CURSOR ON
- IF ll_deli
- SET DELIMITERS ON
- ENDIF
- IF .NOT. ll_space
- SET SPACE OFF
- ENDIF
- SET CONFIRM {if Set_Confrm then}ON{else}OFF{endif}
- IF ISBLANK( lc_scp )
- gc_scope="REST "+gc_scope
- ENDIF
-
- RETURN
- *--EOP: Position
-
- PROCEDURE Showtag
- *{replicate("-",69)}
- * Display a list of tags for the current file
- *{replicate("-",69)}
- PRIVATE cnt, idxexp, length
-
- cnt = 1{tabto(41)}&& Count of index tags
- idxexp = ""{tabto(41)}&& Index tag expression
- length = 12{tabto(41)}&& Minimum tag width
-
- DEFINE POPUP Showtag FROM 8,10
- DEFINE BAR 1 OF Showtag PROMPT "{substr(Posit2_wnd2,1,12)}" SKIP
- DEFINE BAR 3 OF Showtag PROMPT "{substr(Posit2_wnd2,14)}"
-
- *-- For each TAG define a menu bar
- DO WHILE .NOT. ISBLANK( TAG( cnt ) )
- scnt = LTRIM(STR(cnt+4)){tabto(41)}&& Add four to bar number
- string = SUBSTR(TAG(cnt)+SPACE(10),1,11)+CHR(179)+" "+LEFT(KEY(cnt),47)
- IF length < LEN(string){tabto(41)}&& Adjust popup width as needed
- length = LEN(string)
- ENDIF
-
- DEFINE BAR &scnt. OF Showtag PROMPT string
- cnt = cnt + 1
- ENDDO
-
- DEFINE BAR 2 OF Showtag PROMPT REPLICATE(CHR(205),length+1) SKIP
- DEFINE BAR 4 OF Showtag ;
- PROMPT REPLICATE(CHR(196),11)+CHR(194)+REPLICATE(CHR(196),length-11) SKIP
- ON SELECTION POPUP Showtag DEACTIVATE POPUP
-
- IF cnt > 1{tabto(41)}&& If the DBF has tags
-
- xx=4{tabto(41)}&& Right arrow
- DO WHILE xx = 4 .OR. xx = 19{tabto(41)}&& Ignore esacpe from arrow keys
- ACTIVATE POPUP Showtag
- idxexp = PROMPT()
- xx=LASTKEY()
- ENDDO
-
- IF BAR() <> 0{tabto(41)}&& If user selected a tag
- IF LTRIM(RTRIM(idxexp))="{rtrim(substr(Posit2_wnd2,15))}"
- SET ORDER TO
- ELSE
- lc_ord = TRIM(LEFT(idxexp,10))
- lc_exp = TRIM(SUBSTR(idxexp,14))
- SET ORDER TO &lc_ord.
- ENDIF
- ENDIF
-
- ENDIF
- RELEASE POPUP Showtag
-
- RETURN
- *--EOP: Showtag
-
- FUNCTION Get_Type
- PARAMETER tagname
- *{replicate("-",69)}
- * Determine the type of the tag name.
- * Also will set the value of <keyexpr> for the calling routine.
- *{replicate("-",69)}
- PRIVATE ll_exact, ll_talk, keytype, lc_temp, offset, ;
- ln_error
-
- IF SET( "TALK" ) = "ON"
- SET TALK OFF
- ll_talk = .T.
- ELSE
- ll_talk = .F.
- ENDIF
- ll_exact = SET("EXACT") = "ON"
- SET EXACT ON
-
- keytype = "U"{tabto(41)}&& Assume undefined tag
- lc_temp = "U"{tabto(41)}&& Assume error occured with undefined key
- offset = 1{tabto(41)}&& Counter for tags in DBF
- ndxflag = .T.
- ln_error = 0
-
- DO WHILE .NOT. ISBLANK( TAG( offset ) )
-
- IF TAG(offset) = tagname
- lc_temp = TYPE( KEY( offset ) )
- ln_error = 0
- ON ERROR ln_error = ERROR()
-
- DO CASE
- CASE lc_temp="C"
- SEEK "A"
- CASE lc_temp="D"
- SEEK DATE()
- CASE lc_temp="L"
- SEEK .T.
- CASE lc_temp="N" .OR. lc_temp="F"
- SEEK 1
- ENDCASE
-
- ON ERROR
- IF ln_error = 0
- keytype = lc_temp
- keyexpr = KEY(offset)
- EXIT
- ENDIF
- ENDIF
-
- offset = offset + 1
-
- ENDDO
-
- IF .NOT. ll_exact
- SET EXACT OFF
- ENDIF
- IF ll_talk
- SET TALK ON
- ENDIF
-
- RETURN( keytype )
- *--EOP: Get_Type( Tagname )
- // EOP AS_POSIT.COD
-