I´m trying to write data to fields, without the need to specify the name of every field. I would like to be able to address each field with an index. I was thinking of something like this....
---------------------------------------------
With dbs_test
.AddNew
Do While .....
Field(int_index) = strdata
int_index = int_index + 1
Loop
.Update
.Close
End With
---------------------------------------------
Many thanks!!
/Lizzard
---------------------------------------------
With dbs_test
.AddNew
Do While .....
Field(int_index) = strdata
int_index = int_index + 1
Loop
.Update
.Close
End With
---------------------------------------------
Many thanks!!
/Lizzard