brettatexplace
Technical User
I want to open a form, Goto the first record, loop to the last record and collect up info from a string field.
I want to use something like....
if (at least one record) then !need code here!
DoCmd.GotoRecord First
string_now_is = string_now_is & someField
while (not eof) !need code here!
DoCmd.GotoRecord Next
string_now_is = string_now_is & someField
end while
What can I use for VBA to ask EOF and BOF in my form?? Thanks everyone.
I want to use something like....
if (at least one record) then !need code here!
DoCmd.GotoRecord First
string_now_is = string_now_is & someField
while (not eof) !need code here!
DoCmd.GotoRecord Next
string_now_is = string_now_is & someField
end while
What can I use for VBA to ask EOF and BOF in my form?? Thanks everyone.