Could you give an example of what you are doing? Do you have a query? Are you opening a record set? Are you working in VB code? Terry L. Broadbent
faq183-874 contains some tips and ideas for posting questions in these forums. Please review it and comment if you have time. NOTE: Reference to the FAQ is part of my signature and is not directed at any individual.
ssql = "select sum (inputbytes) as test from DB"
Set rstArchive = LANarchiveDB.OpenRecordset(ssql)
Do Until rstArchive.EOF = True
temp = <what goes here>
rstArchive.MoveNext
Loop
rstArchive.Close
temp = rstArchive!test Terry L. Broadbent
faq183-874 contains some tips and ideas for posting questions in these forums. Please review it and comment if you have time. NOTE: Reference to the FAQ is part of my signature and is not directed at any individual.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.