beginner81
Programmer
I'm having the text file as following:
CUSTCODE CUSTNAME ADDRESS
"Cust001" "John" "AAA"
"Cust002" "Smith" "BBB"
"Cust003" "Alan" "CCC"
"CUST004" "David" "DDD"
So the form that i'm working with hav the following TLabel and TEDit componenets:
TLabel TEDIT
--------------------------
1)Cust Code TEdit1
2)CustName TEDit2
3)Address TEDit3
TEDit1 is enabled.. and user will enter the value they like in TEDit1... TEdit2 and TEdit3
is disabled.. the values for TEDit 2 and TEdit3 will displays automatically by the system
refering to the txt file given.. So let's say for example, when the users key in Cust002
to TEDit1, the system will generated autaomatically the value for TEDit2 and TEdit3, which
is "Alan" and "CCC" in this case.. so how am i going to do this??
CUSTCODE CUSTNAME ADDRESS
"Cust001" "John" "AAA"
"Cust002" "Smith" "BBB"
"Cust003" "Alan" "CCC"
"CUST004" "David" "DDD"
So the form that i'm working with hav the following TLabel and TEDit componenets:
TLabel TEDIT
--------------------------
1)Cust Code TEdit1
2)CustName TEDit2
3)Address TEDit3
TEDit1 is enabled.. and user will enter the value they like in TEDit1... TEdit2 and TEdit3
is disabled.. the values for TEDit 2 and TEdit3 will displays automatically by the system
refering to the txt file given.. So let's say for example, when the users key in Cust002
to TEDit1, the system will generated autaomatically the value for TEDit2 and TEdit3, which
is "Alan" and "CCC" in this case.. so how am i going to do this??