![]() |
|
|||||||
| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| Code Samples & Tips Share your recent discoveries and ideas with other users. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Perhaps this is elementary, but I needed very large arrays of information for my program. I put all the information in a single-dimension array and then strip the parts out when needed.
Example: ser="12b*3a4*5n6*78y*9ab2nm*" dim a(5) h1=0 For x=1 to 5:g1=Strindexof(ser,"*",h1) a(x)=Substring(ser,h1,g1-h1) h1=g1+1:next x |
|
|||
|
yes, a(x-1) works for Dim a(5)
for me as an alternative approach, If it is large or varying handling data memory assignments, maybe I'll try the method that the code will create file as data memory which it could arrange and simplify informations, then access and manipulate by read and write in this file. Not sure if applicable to your program.
__________________
Rioven Sony Ericsson XPERIA X1i WM6.1 480x800 Display Resolution with QWERTY keyboard |
|
|||
|
Thanks Erel, bit
but if I wan't to store large random data, Is it efficient using binary files? or what is the right method?
__________________
Rioven Sony Ericsson XPERIA X1i WM6.1 480x800 Display Resolution with QWERTY keyboard |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Passing arrays to Subs. | jesb4ppc | Questions & Help Needed | 6 | 04-15-2008 06:03 PM |
| Filling 2-D arrays. | grgczyz | Basic4ppc Wishlist | 1 | 02-14-2008 12:38 PM |
| Passing arrays in B4PPC6? | Frank | Questions & Help Needed | 1 | 01-14-2008 01:15 PM |
| Filling arrays | Erel | Code Samples & Tips | 3 | 01-13-2008 06:11 PM |
| screen size to form size relation | Cableguy | Basic4ppc Wishlist | 2 | 08-14-2007 10:40 PM |