Results 1 to 3 of 3

Thread: Carrying Previous values to next record.

  1. #1
    Join Date
    Feb 2004
    Posts
    2

    Question Carrying Previous values to next record.

    I have an application that I developing and I want values in selected fields to automatically enter the same field for the next record. For anyone who have used the old dBase III program, I am trying to perform the "SET CARRY ON/OFF" command. Any suggestions are welcomed.

    thx,

    xk

  2. #2
    Join Date
    Jan 2003
    Location
    UK
    Posts
    277
    just store the values in variables so you can retrieve them when the next record comes a long.

  3. #3
    Join Date
    Feb 2004
    Posts
    2

    Thumbs up

    Thanks Knook,

    Private Sub Form_Current()
    Me!.{fieldname1} = fieldname1
    Me!.{fieldname2} = fieldname2
    .
    .
    End Sub
    (I am using version 97)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •