Countug words

Yohn

Member
Hy!
My problem is:
I need to find user in table users. How to count letter by letter and combine it with letters in database, so if I enter wrong letter he would tell me that.
thx.
 

Yohn

Member
Re: Counting words

ASSIGN fcustomer.

OPEN QUERY brwCustomer FOR EACH Customer
WHERE customer.name = fcustomer
OR costumer.secoundname = fcustomer NO-LOCK.
APPLY "VALUE-CHANGED":U TO BROWSE brwC.
IF NOT AVAILABLE Customer THEN
MESSAGE "No such customer name in database"
VIEW-AS ALERT-BOX INFO BUTTONS OK.

fcustomer is fill in.
 
Top