Hey Guys,
I have a database which reads data from another program. I want to assign data I receive to form fields. My form fields are named as
ect.,ect. now in my database I have these setup in a loop such as:
now what happens is, of couse, A97 reassigns the value of
to the value of
instead of assigning the value of
to the field (on the form) that
is assigned to first.
Help Please
scoty:
I have a database which reads data from another program. I want to assign data I receive to form fields. My form fields are named as
Code:
FirstName1, FirstName2, FirstName3...
Code:
y = 1
Do Until FirstName = " "
FirstName = "FirstName" & y
FirstName = GetText(1 , 3, 10)
y = y + 1
Loop
Code:
FirstName
Code:
GetText(1, 3, 10)
Code:
GetText(1, 3, 10)
Code:
FirstName
Help Please
scoty: