Set rs = Me.frm_sub.Form .Recordset
While Not rs.EOF
Me.frm_sub.Form .fldX = Me.frm_sub.Form .fldY * 0.1
rs.MoveNext
Wend
the upper source code is looping.
i want to get the result, without loop.
is it possible?
*** Sent via Developersdex http://www.developersdex.com ***
While Not rs.EOF
Me.frm_sub.Form .fldX = Me.frm_sub.Form .fldY * 0.1
rs.MoveNext
Wend
the upper source code is looping.
i want to get the result, without loop.
is it possible?
*** Sent via Developersdex http://www.developersdex.com ***
Comment