Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. lajchon

    Display RecordSet

    Problem solved. Thanks again for the code examples :)
  2. lajchon

    Display RecordSet

    This is actually just a vbscript application for Windows. The data will be read into Ticket.Record(). If there is more than 5 records to display on one page then by clicking the "Next" button it will display the next set. If there are more than 5 on that page then "Next" will be available...
  3. lajchon

    Display RecordSet

    Class TicketData Public Record() Public RecordCount Sub Update 'Dumps data from database into Record(X) Set Record(X) = New RecordData Record(X).DBID = ResultSet.GetColumnValue(1) Record(X).ID = ResultSet.GetColumnValue(2) Record(X).Subject =...
  4. lajchon

    Display RecordSet

    I have code that dumps data from a database into a class with a public array called Record, ie Ticket.Record(X).ID = "1" Ticket.Record(X).Subject = "Subject" In this example I have 8 records in the class of Ticket.Record. What I am wanting to do is display 5 records at a time and when I hit...

Part and Inventory Search

Back
Top