Discussion:
'Out of stack space' error
(too old to reply)
s***@gmail.com
2015-05-29 06:39:39 UTC
Permalink
Microsoft VBScript runtime error '800a001c'
Out of stack space: 'BreakLine'
/RepGenInfo_w.asp, line 11
Can anyone help me figure out how to overcome this?
I am getting the same error when trying to open a file on my hard drive.
In my situation, I get a popup that says;
Script: C:Users\Plee\Documents\Court_Notificatio...
Line: 1
Char: 17786
Error: Out of stack space
Code: 800A001C
Source: Microsoft JScript runtime error

Does anyone know what this file is or how I can get it open to find out?
Thanks in advance for any help. ALso;
SOrry to troll your thread man :-(
But this is the only closest result I could find after consulting google, it sent me here and I am computer illiterate, other than being able to write a simple program in BASIC many years ago as an elective course requirement in college for my business degree.
Evertjan.
2015-05-29 09:08:40 UTC
Permalink
Post by s***@gmail.com
Source: Microsoft JScript runtime error
Wrong NG, this is about VBScript, not JScript.
Post by s***@gmail.com
I am getting the same error when trying to open a file on my hard drive.
In my situation, I get a popup that says;
Script: C:Users\Plee\Documents\Court_Notificatio...
Line: 1
Char: 17786
Error: Out of stack space
Code: 800A001C
Source: Microsoft JScript runtime error
So, it looks like you are using a jscript script
on cscript or wscript, and the script errors out.

It probably means that a function is recursively calling itself in an
infinite loop and therefore the script has run out of stack space. If you
are calling a function recursively make sure that it returns at some point
of time.

<https://www.webmasterworld.com/forum47/227.htm> [2002!]

So understand and correct the script.
Post by s***@gmail.com
I am computer illiterate
Scripts that you do not understand you should NEVER use,
as they could clean out your entire HD and your bank-account.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Todd Vargo
2015-06-01 02:46:14 UTC
Permalink
Post by s***@gmail.com
Microsoft VBScript runtime error '800a001c'
Out of stack space: 'BreakLine'
/RepGenInfo_w.asp, line 11
Can anyone help me figure out how to overcome this?
I am getting the same error when trying to open a file on my hard drive.
In my situation, I get a popup that says;
Script: C:Users\Plee\Documents\Court_Notificatio...
Line: 1
Char: 17786
Error: Out of stack space
Code: 800A001C
Source: Microsoft JScript runtime error
Does anyone know what this file is or how I can get it open to find out?
No, we don't know what this file is or how you can get it open, because
you have not provided any details about the file. You have only provided
2 runtime error messages with no code. The first one appears to be only
a partial error message, generated from a VBScript involving some form
of recursion.

https://support.microsoft.com/en-us/kb/126090

The second error message appears to be a similar issue generated by a
Jscript. This one appears to be a single line file which may be caused
by saving the file in format/encoding other than ASCII or ANSI.

Keep in mind, my analysis may be incorrect due to insufficient details.
--
Todd Vargo
(Post questions to group only. Remove "z" to email personal messages)
Loading...