| View previous topic :: View next topic |
| Author |
Message |
DW Contributor

Joined: 21 Mar 2003 Posts: 175 Location: UK
|
Posted: Wed Apr 23, 2003 10:54 am Post subject: Visable Lists (How big max)? |
|
|
| How many lines can a visable list actually hold? |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Wed Apr 23, 2003 12:42 pm Post subject: |
|
|
hi dw,
i don't know off hand but you could run a program that added a new line in a loop until you got an error...then you would know
something like
| Code: |
rem list1 is your visible list
%i = 1
repeat
list insert, list1, %i
list seek, list1, 0
%i = @succ(%i)
until @equal(%i, 1000000)
|
just wrote this off the top of my head...hope the code is ok
Serge _________________
|
|
| Back to top |
|
 |
DW Contributor

Joined: 21 Mar 2003 Posts: 175 Location: UK
|
Posted: Wed Apr 23, 2003 12:47 pm Post subject: |
|
|
Thank you I have though of that already, but I remember reading on this board somewhere that later version of windows allow more then older versions.
I know how many windows xp can have but what about other os's?
Im not going to install my older os's just to check this out, so i figuree i would ask.
Thank you |
|
| Back to top |
|
 |
LOBO Valued Contributor


Joined: 14 Mar 2002 Posts: 241 Location: Wilmington, Delaware, USA
|
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Wed Apr 23, 2003 8:11 pm Post subject: |
|
|
Quoted for easy finding from the topic that Mark posted:
| Mac wrote: | Some of that may be a Windows list limitation.
Windows lists are limited by available memory,
and in Windows 95 they're limited to 32767 items
(that's items, not bytes), no matter if you have
more free RAM or not...
However, apparently VDS hidden lists are only
limited by available memory (the ones created
with LIST CREATE). I've been able to use more
than 32767 items in those with Windows 95.
Cheers, Mac |
_________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
DW Contributor

Joined: 21 Mar 2003 Posts: 175 Location: UK
|
Posted: Thu Apr 24, 2003 10:00 am Post subject: |
|
|
| That is spot on what i was trying to find, thank you. |
|
| Back to top |
|
 |
|