All of these are good ideas, but What I want is to push a character,, go to that character(s) in table... browse approximately 10 in order items
in browse. If I don`t see what I want I add another character, then browse.
index dbf character numbers
Moderator: Rathinagiri
Re: index dbf character numbers
All The Best,
Franco
Canada
Franco
Canada
- AUGE_OHR
- Posts: 2117
- Joined: Sun Aug 25, 2019 3:12 pm
- DBs Used: DBF, PostgreSQL, MySQL, SQLite
- Location: Hamburg, Germany
Re: index dbf character numbers
what is the Problem to "add" a Sign to String
Code: Select all
LOCAL a := "12"
LOCAL b := "3"
? a + b // -> "123"---
but that is not your Problem ... you still "think DOS"
when work with Windows you have to "think Event driven"
GRID does have ONKEY Event where you get sign to SEEK
BROWSE need TEXTBOX where you can type sign and use ONCHANGE Event
Code: Select all
DEFINE GRID Browse_1
ONKEY Get_Num("GRID")
DEFINE TEXTBOX Text_1
ONCHANGE Get_Num("BROWSE")GRID can use ONKEY Event to get Sign so leave Focus on GRID when "fill" TEXTBOX (not need for GRID )
have fun
Jimmy
Jimmy