Guest_imported
New member
- Jan 1, 1970
- 0
One of VB application we are encountering a problem, any suggestions or help is really appreciated.
We are looking for alternative solutions to display records in VB either using of the following if possible?
a) ARRAYS
b) Grid
c) Spread Control. Max limitation 60,000 records
Our VB application calls RPC in CICS region, which process data and creates a VSAM dataset.The volume of data that is processed is HUGE say ranges from 7 to 20 million records and can go high at a later date say to 25 million. Then the process data is viewed, the VSAM dataset is read and data is sent to VB and in turn displays the content on the screen.
Currently we are using GRID control which displays 2000 records. As per our knowledge Grid control as a limitation of 2000 records.
We would like to display the huge volume of data in small segments say 1000 records at a time, if yes what approach we should follow to resolve our problem? For example : A given treaty has generated 7 million records and we display to the user in smaller portions?
What is the capacity of an array in VB is there a default limitation?
If the array size based on the Memory of the machine?
If an array can HOLD million records and then display 1000 records at a time --- i.e. page 1, next 1000 records page 2. next page 3 so like this how many Grids can we have? Is there a limitation of the GRID? meaning 7 - 8 million records can run into PAGES.
Can we swap 'NEXT' or 'PREVIOUS' as we do in HOTMAIL.