forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Too many system timers

 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help
View previous topic :: View next topic  
Author Message
Vic D'Elfant
Past Contributor
Past Contributor


Joined: 26 Jun 2002
Posts: 673
Location: The Netherlands

PostPosted: Wed Oct 08, 2003 11:57 am    Post subject: Too many system timers Reply with quote

Hi all,

My compiled VDS script returns error 37 (Too many system timers). This error doesn't occur when running the script from the VDS IDE. Confused

What am I doing wrong and what does this error exactly mean?

My script uses the vdsipp and blowfish dll, if that's of any use.

Thanks,
Vic

_________________
phpBB Development Team
Back to top
View user's profile Send private message Visit poster's website
jules
Professional Member
Professional Member


Joined: 14 Sep 2001
Posts: 1043
Location: Cumbria, UK

PostPosted: Wed Oct 08, 2003 1:31 pm    Post subject: Reply with quote

Is this VDS 5? It seems to me that whoever compiled the help file didn't look at the list of error messages / numbers in the IDE source code. Here it is:

Code:
   'Invalid Command',                                             {1}
         'Missing parameter(s) to command',                     {2}
      'Style already defined',                                    {3}
      'Invalid list operation',                                    {4}
      'Invalid variable name or too many variables',   {5}
      '"=" symbol expected',                                       {6}
      'Invalid @ function',                                          {7}
      'Syntax error in @ function',                              {8}
      'Missing END or ELSE',                                       {9}
      'Command or function nested too deeply',            {10}
      'Missing argument(s) to function',                     {11}
      'Label "%s" not found',                                       {12}
      'Invalid argument to @function',                        {13}
      'Invalid parameter to command',                           {14}
      'UNTIL without REPEAT',                                       {15}
      'Invalid style',                                                {16}
      'Dialog already exists',                                    {17}
      'Dialog or dialog element does not exist',         {18}
      'List index out of range',                                 {19}
      'File does not exist',                                       {20}
      'Cannot create dialog element',                     {21}
      'Operation invalid when no dialog showing',         {22}
      'Dialog element name not valid',                        {23}
      'Mismatched brackets',                            {24}
      'Non-numeric value',                              {25}
      'Arithmetic error',                               {26}
      'Error in external command or function',          {27}
      'External library not available',                 {28}
      'Insufficient memory for operation',                 {29}
      'Breakpoint reached',                                          {30}
      'Stopped by user',                                             {31}
      'User-defined error in external command',         {32}
         'Unhandled exception "%s"',                                 {33}
      'WEND missing',                                    {34}
      'WEND without WHILE',                              {35}
      'Too many system timers',                             {36}
         'Cannot load resource',                                       {37}
      'Library function not found',                              {38}
      'Error calling library function',                        {39}
      'Library not loaded',                                          {40}
      'Too many arguments',                                          {41}
      'Operation invalid'                                             {42}


Sorry the layout is a bit messy. Anyway, from this you can see that the error is actually a problem with loading a resource, and nothing to do with system timers.

_________________
The Tech Pro
www.tech-pro.net
Back to top
View user's profile Send private message Visit poster's website
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Wed Oct 08, 2003 7:11 pm    Post subject: Reply with quote

Wow cool. This explains some of those mystery errors. Shocked
_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
Dr. Dread
Professional Member
Professional Member


Joined: 03 Aug 2001
Posts: 1065
Location: Copenhagen, Denmark

PostPosted: Thu Oct 09, 2003 4:57 am    Post subject: Reply with quote

Actually they are in the "Error Messages" section of the VDS help file. However, errors from #32
and on are different from the ones stated by Jules. So that would explain Vic's wrong error statement.
And it once again stresses the need to have that darn help file updated Rolling Eyes

Greetz
Dread

_________________
~~ Alcohol and calculus don't mix... Don't drink and derive! ~~

String.DLL * advanced string processing
Back to top
View user's profile Send private message
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Thu Oct 09, 2003 10:23 am    Post subject: Reply with quote

Yes I know they are in the help file but some are wrong. Confused
_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
CodeScript
Moderator Team


Joined: 08 Jun 2003
Posts: 1060
Location: India

PostPosted: Thu Oct 09, 2003 1:41 pm    Post subject: Reply with quote

This may help reffering easier:
I only hope the help file is updated in the comming update Rolling Eyes
Code:
(1)    Invalid Command
(2)    Missing parameter(s) to command
(3)    Style already defined
(4)    Invalid list operation
(5)    Invalid variable name or too many variables
(6)    "=" symbol expected
(7)    Invalid @ function
(8)    Syntax error in @ function
(9)    Missing END or ELSE
(10)    Command or function nested too deeply
(11)    Missing argument(s) to function
(12)    Label "%s" not found
(13)    Invalid argument to @function
(14)    Invalid parameter to command
(15)    UNTIL without REPEAT
(16)    Invalid style
(17)    Dialog already exists
(18)    Dialog or dialog element does not exist
(19)    List index out of range
(20)    File does not exist
(21)    Cannot create dialog element
(22)    Operation invalid when no dialog showing
(23)    Dialog element name not valid
(24)    Mismatched brackets
(25)    Non-numeric value
(26)    Arithmetic error
(27)    Error in external command or function
(28)    External library not available
(29)    Insufficient memory for operation
(30)    Breakpoint reached
(31)    Stopped by user
(32)    User-defined error in external command
(33)    Unhandled exception "%s"
(34)    WEND missing
(35)    WEND without WHILE
(36)    Too many system timers
(37)    Cannot load resource
(38)    Library function not found
(39)    Error calling library function
(40)    Library not loaded
(41)    Too many arguments
(42)   Operation invalid

_________________
Regards
- CodeScript
Arrow Give your application a professional look with the VDSGUI Extension
Back to top
View user's profile Send private message Visit poster's website
Vic D'Elfant
Past Contributor
Past Contributor


Joined: 26 Jun 2002
Posts: 673
Location: The Netherlands

PostPosted: Thu Oct 09, 2003 2:09 pm    Post subject: Reply with quote

Thanks all Very Happy

Vic

_________________
phpBB Development Team
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group