Results 1 to 2 of 2

Thread: [RESOLVED] BOOK mark

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Dec 2000
    Posts
    462

    Resolved [RESOLVED] BOOK mark

    I use this to extract data from a table by Account number to get the recordset book mark.
    VB Code:
    1. Record_Sets.Open "SELECT Quanity,Item_Number,Description,Cost_Ea,TotalCost from Equip WHERE _  Account = '" & Acct & "' ORDER BY Record", Data_Connection(1),  _ adOpenStatic, adLockReadOnly, adCmdTableDirect
    2. Record_Sets.Close
    3. Record_Sets.Open "SELECT Zone_Number,Description FROM Zones WHERE  _Account = '" & Acct & "' ORDER BY Record", Data_Connection(1),  _ adOpenStatic, adLockReadOnly, adCmdText
    4. Record_Sets.Close

    DDr is Declared as A String

    Would I have to use> Set RRE = Record_Sets
    Inorder to use the recordset bookmark for Equip table I use this RRE.Bookmark = Val(DDr(1,1)) For record one in the equipment table

    I debug and then it give me the same values every time. I am thinking that will corrupt my data.

    Is this the correct method for this

    I need some help on this one Look on Net found Nothing that helps
    Last edited by Dbee; Sep 5th, 2006 at 05:43 AM.
    Don
    (OLD DOS Programmer)

  2. #2

    Thread Starter
    Hyperactive Member
    Join Date
    Dec 2000
    Posts
    462

    Re: BOOK mark

    I was Correct on the Bookmark
    Don
    (OLD DOS Programmer)

Posting Permissions

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



Click Here to Expand Forum to Full Width