Help

  • Thread starter Thread starter JudyT
  • Start date Start date
J

JudyT

Can someone please tell me what this code is doing?

rsHulls.MoveFirst
sav_CID = rsHulls!cid
sav_Hull = rsHulls!hull
Hull_Text = rsHulls!hull
No_of_Hulls = 1
While Not rsHulls.EOF
 
Well, it's incomplete or posted incorrectly, but basically it is
attempting to move to the first record in a recordset named
rsHulls, then setting some fields equal to the field values in
the rsHulls recordset (except for the No_of_Hulls field which
is getting a hard coded value of 1).

The While Not rsHulls.EOF line should have more code following
it, or it's out of place in your post, etc.

If you can post the full code, someone may be able to tell you more.
 
Back
Top