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...
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 =...
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...
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.