What type of error is this ?

Ask a Question related to ASP, Design and Development.

  1. #1

    Default What type of error is this ?

    I am getting this error below. (Its not integer related or variable related
    error)
    Actually I have lot of include files in my page(s) and every page contain
    long asp code.
    at the end of include hirarchy when i am including an other file this error
    comes and that file contain no variable but contain few asp staements, same
    file when I am including at top of any file its working fine......

    I am really stucked :'( here ..

    Any help or advice will be highly appreciated.

    Error Type:
    Microsoft VBScript runtime (0x800A0006)
    Overflow: '[number: 33362]'

    Kind Regards
    Fayyaz





    MFA Guest

  2. Similar Questions and Discussions

    1. Parser Error: Type XYZ does not have a property named 'cc3:MyItems' (complete posting) ASP.NET Web Control Error
      I am having problems trying to get this part of the functionality working on my control and I hope somebody has a clue about how to resolve it. ...
    2. Error: Webcontrol must have items of type X. SubLinks is of type Y
      Hi, I have made a web control that has two sorts of items. The first is the Links property that has a persistence attribute of InnerProperty, the...
    3. midl\oleaut32.dll : error MIDL2020 : error generating type library : LayOut failed : IXMLDOMNode
      Hi there Im new to C++ and have inherited a C++ dll that wont compile. Its coplaing about the following midl\oleaut32.dll : error MIDL2020 :...
    4. another error type
      Thanks for the reply it helped me but then I get this Error Type: Provider (0x80004005) Unspecified error /asp/PPLMain/memberpage.asp, line 10...
    5. Cast from type 'DBNull' to type 'String' is not valid error
      Trying to add an insert button Sub btnAddRow_Click event for adding a row to the datagrid and dataset back to SQL. Had it working per the...
  3. #2

    Default Re: What type of error is this ?


    "MFA" <MFA@MFA> wrote in message
    news:ecvthV$kDHA.2424@TK2MSFTNGP10.phx.gbl...
    > I am getting this error below. (Its not integer related or variable
    related
    > error)
    What makes you say that?

    Are you trying to CInt a variable that has a value of 33,362? You can't go
    over 32,767 (or under -32,768).

    Ray at work
    > Actually I have lot of include files in my page(s) and every page contain
    > long asp code.
    > at the end of include hirarchy when i am including an other file this
    error
    > comes and that file contain no variable but contain few asp staements,
    same
    > file when I am including at top of any file its working fine......
    >
    > I am really stucked :'( here ..
    >
    > Any help or advice will be highly appreciated.
    >
    > Error Type:
    > Microsoft VBScript runtime (0x800A0006)
    > Overflow: '[number: 33362]'
    >
    > Kind Regards
    > Fayyaz
    >
    >
    >
    >
    >

    Ray at Guest

  4. #3

    Default Re: What type of error is this ?

    Thanks for your reply.

    No I am not converting using any variable in that page..


    "Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
    news:utsoga$kDHA.2160@TK2MSFTNGP10.phx.gbl...
    >
    > "MFA" <MFA@MFA> wrote in message
    > news:ecvthV$kDHA.2424@TK2MSFTNGP10.phx.gbl...
    > > I am getting this error below. (Its not integer related or variable
    > related
    > > error)
    >
    > What makes you say that?
    >
    > Are you trying to CInt a variable that has a value of 33,362? You can't
    go
    > over 32,767 (or under -32,768).
    >
    > Ray at work
    >
    > > Actually I have lot of include files in my page(s) and every page
    contain
    > > long asp code.
    > > at the end of include hirarchy when i am including an other file this
    > error
    > > comes and that file contain no variable but contain few asp staements,
    > same
    > > file when I am including at top of any file its working fine......
    > >
    > > I am really stucked :'( here ..
    > >
    > > Any help or advice will be highly appreciated.
    > >
    > > Error Type:
    > > Microsoft VBScript runtime (0x800A0006)
    > > Overflow: '[number: 33362]'
    > >
    > > Kind Regards
    > > Fayyaz
    > >
    > >
    > >
    > >
    > >
    >
    >

    MFA Guest

  5. #4

    Default Re: What type of error is this ?

    I'll bet you a dollar. Are you using a function that expects an integer as
    an argument? How about showing your relevant code and we'll figure it out
    more easily.

    Ray at work

    "MFA" <MFA@MFA> wrote in message
    news:%23iYwhk$kDHA.1284@TK2MSFTNGP09.phx.gbl...
    > Thanks for your reply.
    >
    > No I am not converting using any variable in that page..
    >
    >
    > "Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
    > news:utsoga$kDHA.2160@TK2MSFTNGP10.phx.gbl...
    > >
    > > "MFA" <MFA@MFA> wrote in message
    > > news:ecvthV$kDHA.2424@TK2MSFTNGP10.phx.gbl...
    > > > I am getting this error below. (Its not integer related or variable
    > > related
    > > > error)
    > >
    > > What makes you say that?
    > >
    > > Are you trying to CInt a variable that has a value of 33,362? You can't
    > go
    > > over 32,767 (or under -32,768).
    > >
    > > Ray at work

    Ray at Guest

  6. #5

    Default Re: What type of error is this ?

    You are either implicitly or explicitly converting 33362 to an integer (this
    could be through CINT() or it could be some internal function, like
    datediff(second, 19000101, date). Integer has an upper bound of 32767, see
    [url]http://www.aspfaq.com/2007[/url]




    "MFA" <MFA@MFA> wrote in message
    news:ecvthV$kDHA.2424@TK2MSFTNGP10.phx.gbl...
    > I am getting this error below. (Its not integer related or variable
    related
    > error)
    > Actually I have lot of include files in my page(s) and every page contain
    > long asp code.
    > at the end of include hirarchy when i am including an other file this
    error
    > comes and that file contain no variable but contain few asp staements,
    same
    > file when I am including at top of any file its working fine......
    >
    > I am really stucked :'( here ..
    >
    > Any help or advice will be highly appreciated.
    >
    > Error Type:
    > Microsoft VBScript runtime (0x800A0006)
    > Overflow: '[number: 33362]'
    >
    > Kind Regards
    > Fayyaz
    >
    >
    >
    >
    >

    Aaron Bertrand - MVP Guest

  7. #6

    Default What type of error is this ?

    Hi All

    Thanks to all who replied to my question dated 16/10/2003 with the same
    subject..

    In all replies I got every one is saying that I am using cint() etc. But i
    am not using any convert method.

    What I am using.

    I have one application veriable defined in global.asa that contain server
    address and that variable I am using as below.
    src =
    "<%=Application("Server")%>/gimages/Media_Temp/Templat3/images/template3_r19
    _c41.jpg"

    I am using so many times same variable in same page.

    I tried to add the variable one by one and error is coming some where in
    mid.
    If I am not using this variable and giving the server address as hard coded
    there is no error.

    This thing is giving me a real big problem...


    Error is below.
    Error Type:
    Microsoft VBScript runtime (0x800A0006)
    Overflow: '[number: 33362]'


    Kind Regards
    Fayyaz


    ---------------------------------Previous
    text-------------------------------------------

    I'll bet you a dollar. Are you using a function that expects an integer as
    an argument? How about showing your relevant code and we'll figure it out
    more easily.

    Ray at work

    "MFA" <MFA@MFA> wrote in message
    news:%23iYwhk$kDHA.1284@TK2MSFTNGP09.phx.gbl...
    > Thanks for your reply.
    >
    > No I am not converting using any variable in that page..
    >
    >
    > "Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
    > news:utsoga$kDHA.2160@TK2MSFTNGP10.phx.gbl...
    > >
    > > "MFA" <MFA@MFA> wrote in message
    > > news:ecvthV$kDHA.2424@TK2MSFTNGP10.phx.gbl...
    > > > I am getting this error below. (Its not integer related or variable
    > > related
    > > > error)
    > >
    > > What makes you say that?
    > >
    > > Are you trying to CInt a variable that has a value of 33,362? You can't
    > go
    > > over 32,767 (or under -32,768).
    > >
    > > Ray at work
    Error Type:
    Microsoft VBScript runtime (0x800A0006)
    Overflow: '[number: 33362]'





    MFA Guest

  8. #7

    Default Re: What type of error is this ?

    Unless you can show the actual line where the error is occurring or show all
    of your code no one is going to be able to help you much.

    I would recommend that you put the value from Application("Server") into a
    local string variable if you are using it more than once.

    --
    Mark Schupp
    Head of Development
    Integrity eLearning
    [url]www.ielearning.com[/url]


    "MFA" <MFA@MFA> wrote in message
    news:OTKMHixlDHA.1084@tk2msftngp13.phx.gbl...
    > Hi All
    >
    > Thanks to all who replied to my question dated 16/10/2003 with the same
    > subject..
    >
    > In all replies I got every one is saying that I am using cint() etc. But i
    > am not using any convert method.
    >
    > What I am using.
    >
    > I have one application veriable defined in global.asa that contain server
    > address and that variable I am using as below.
    > src =
    >
    "<%=Application("Server")%>/gimages/Media_Temp/Templat3/images/template3_r19
    > _c41.jpg"
    >
    > I am using so many times same variable in same page.
    >
    > I tried to add the variable one by one and error is coming some where in
    > mid.
    > If I am not using this variable and giving the server address as hard
    coded
    > there is no error.
    >
    > This thing is giving me a real big problem...
    >
    >
    > Error is below.
    > Error Type:
    > Microsoft VBScript runtime (0x800A0006)
    > Overflow: '[number: 33362]'
    >
    >
    > Kind Regards
    > Fayyaz
    >
    >
    > ---------------------------------Previous
    > text-------------------------------------------
    >
    > I'll bet you a dollar. Are you using a function that expects an integer
    as
    > an argument? How about showing your relevant code and we'll figure it out
    > more easily.
    >
    > Ray at work
    >
    > "MFA" <MFA@MFA> wrote in message
    > news:%23iYwhk$kDHA.1284@TK2MSFTNGP09.phx.gbl...
    > > Thanks for your reply.
    > >
    > > No I am not converting using any variable in that page..
    > >
    > >
    > > "Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
    > > news:utsoga$kDHA.2160@TK2MSFTNGP10.phx.gbl...
    > > >
    > > > "MFA" <MFA@MFA> wrote in message
    > > > news:ecvthV$kDHA.2424@TK2MSFTNGP10.phx.gbl...
    > > > > I am getting this error below. (Its not integer related or variable
    > > > related
    > > > > error)
    > > >
    > > > What makes you say that?
    > > >
    > > > Are you trying to CInt a variable that has a value of 33,362? You
    can't
    > > go
    > > > over 32,767 (or under -32,768).
    > > >
    > > > Ray at work
    >
    > Error Type:
    > Microsoft VBScript runtime (0x800A0006)
    > Overflow: '[number: 33362]'
    >
    >
    >
    >
    >

    Mark Schupp Guest

  9. #8

    Default Re: What type of error is this ?

    "MFA" <MFA@MFA> wrote in message
    news:OTKMHixlDHA.1084@tk2msftngp13.phx.gbl...
    > Hi All
    >
    > Thanks to all who replied to my question dated 16/10/2003 with the same
    > subject..
    >
    > In all replies I got every one is saying that I am using cint() etc. But i
    > am not using any convert method.
    >
    > What I am using.
    >
    > I have one application veriable defined in global.asa that contain server
    > address and that variable I am using as below.
    > src =
    >
    "<%=Application("Server")%>/gimages/Media_Temp/Templat3/images/template3_r19
    > _c41.jpg"
    >
    > I am using so many times same variable in same page.
    >
    > I tried to add the variable one by one and error is coming some where in
    > mid.
    > If I am not using this variable and giving the server address as hard
    coded
    > there is no error.
    Perhaps you should try debugging using Response.Write. For example, replace
    the code above with this:

    <%
    If Len(Application("Server")) > 0 Then
    Response.Write( "<div>Application(""Server"")=[" & Application("Server")
    & "]</div>" )
    Else
    Response.Write( "<div>ERROR: Application(""Server"") has a length of " &
    Len(Application("Server")) & "</div>" )
    End If
    %>

    Watch for line wraps in the code above.
    -Peter Foti


    Peter Foti Guest

  10. #9

    Default Re: What type of error is this ?

    An overflow results when you try to assign a number to a space in memory
    that is not configured to contain the number of bytes required to represent
    the number. For example, you may have a variable that is defined as Integer.
    This variable will only be able to contain a number up to 32,768. If you try
    to assign a larger number, such as 33362, to the variable, it will generate
    an overflow error.

    This can also happen when you are adding two Integers together, if the
    result of the addition is greater than 32,768. When vbscript adds two
    numbers together, it creates a space in memory to store the result
    temporarily. It uses the largest datatype of the two numbers being added to
    create that space. So, if you add two Integers, it will create a temporary
    space that is configured to store an Integer. If the two integers being
    added are 21000 and 22000, the result, 43000 will be too big to put into the
    temporary storage location, causing the overflow error. The solution is to
    use CLng to convert at least one of the addends to a Long, so that the
    temporary storage location will be configured to store a Long result.

    HTH,
    Bob Barrows
    --
    Microsoft MVP -- ASP/ASP.NET
    Please reply to the newsgroup. The email account listed in my From
    header is my spam trap, so I don't check it very often. You will get a
    quicker response by posting to the newsgroup.



    Bob Barrows Guest

  11. #10

    Default Re: What type of error is this ?

    We're still waiting for you to show us the code, so we can help you.
    (Sorry if this message is double-posted.)

    Ray at work

    "MFA" <MFA@MFA> wrote in message
    news:OTKMHixlDHA.1084@tk2msftngp13.phx.gbl...
    > Hi All
    > I have one application veriable defined in global.asa that contain server
    > address and that variable I am using as below.
    > src =
    >
    "<%=Application("Server")%>/gimages/Media_Temp/Templat3/images/template3_r19
    > _c41.jpg"
    >
    > I am using so many times same variable in same page.
    >
    > I tried to add the variable one by one and error is coming some where in
    > mid.
    > If I am not using this variable and giving the server address as hard
    coded
    > there is no error.
    >
    > This thing is giving me a real big problem...
    >
    >
    > Error is below.
    > Error Type:
    > Microsoft VBScript runtime (0x800A0006)
    > Overflow: '[number: 33362]'
    >
    >
    > Kind Regards
    > Fayyaz

    Ray at Guest

  12. #11

    Default Re: What type of error is this ?

    WHAT LINE IS THE ERROR ON? THIS FILE IS 719 LINES LONG.

    Ray at home

    "MFA" <MFA@MFA> wrote in message
    news:OkXil17lDHA.1408@TK2MSFTNGP11.phx.gbl...
    > Thanks for your detail replies and help.
    >
    > I have attached source file.
    > When I am using <%=Application("Server")%> it giving me error when I am
    > using [url]http://127.0.0.1[/url] its working fine, and I tried this assigning
    > <%=Application("Server")%> value to a local variable but problem is same.
    >
    > I have many other .asp files on above of this file. I am using this file
    as
    > include file..
    >
    > Kind regards
    > Fayyaz
    >
    >
    >
    >
    >
    >
    >
    > "Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
    > news:OwRvo0zlDHA.1728@TK2MSFTNGP11.phx.gbl...
    > > We're still waiting for you to show us the code, so we can help you.
    > > (Sorry if this message is double-posted.)
    > >
    > > Ray at work
    > >
    > > "MFA" <MFA@MFA> wrote in message
    > > news:OTKMHixlDHA.1084@tk2msftngp13.phx.gbl...
    > > > Hi All
    > > > I have one application veriable defined in global.asa that contain
    > server
    > > > address and that variable I am using as below.
    > > > src =
    > > >
    > >
    >
    "<%=Application("Server")%>/gimages/Media_Temp/Templat3/images/template3_r19
    > > > _c41.jpg"
    > > >
    > > > I am using so many times same variable in same page.
    > > >
    > > > I tried to add the variable one by one and error is coming some where
    in
    > > > mid.
    > > > If I am not using this variable and giving the server address as hard
    > > coded
    > > > there is no error.
    > > >
    > > > This thing is giving me a real big problem...
    > > >
    > > >
    > > > Error is below.
    > > > Error Type:
    > > > Microsoft VBScript runtime (0x800A0006)
    > > > Overflow: '[number: 33362]'
    > > >
    > > >
    > > > Kind Regards
    > > > Fayyaz
    > >
    > >
    >
    >
    >

    Ray at Guest

  13. #12

    Default Re: What type of error is this ?

    Its giving error in any of parent file where I have included this file.

    And again let me tell u when I am doing the (below) changes in this file
    error is coming.
    If you want to see the parent code thats not possible as I am including it
    in different files dynamiclly.
    And I searched my whole project no where I am using Cint(), I am using
    Clng() and cdbl() and even I changed cdbl() to clng() but no success.

    I think there is any limit or something towards using variables or specially
    application() variables its not materr on converting interger or adding
    integers.

    Any how thanks for your help.

    Regards
    Fayyaz



    "Ray at <%=sLocation%>" <myfirstname at lane 34 . komm> wrote in message
    news:OF0JhZ8lDHA.1084@tk2msftngp13.phx.gbl...
    > WHAT LINE IS THE ERROR ON? THIS FILE IS 719 LINES LONG.
    >
    > Ray at home
    >
    > "MFA" <MFA@MFA> wrote in message
    > news:OkXil17lDHA.1408@TK2MSFTNGP11.phx.gbl...
    > > Thanks for your detail replies and help.
    > >
    > > I have attached source file.
    > > When I am using <%=Application("Server")%> it giving me error when I am
    > > using [url]http://127.0.0.1[/url] its working fine, and I tried this assigning
    > > <%=Application("Server")%> value to a local variable but problem is
    same.
    > >
    > > I have many other .asp files on above of this file. I am using this file
    > as
    > > include file..
    > >
    > > Kind regards
    > > Fayyaz
    > >
    > >
    > >
    > >
    > >
    > >
    > >
    > > "Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
    > > news:OwRvo0zlDHA.1728@TK2MSFTNGP11.phx.gbl...
    > > > We're still waiting for you to show us the code, so we can help you.
    > > > (Sorry if this message is double-posted.)
    > > >
    > > > Ray at work
    > > >
    > > > "MFA" <MFA@MFA> wrote in message
    > > > news:OTKMHixlDHA.1084@tk2msftngp13.phx.gbl...
    > > > > Hi All
    > > > > I have one application veriable defined in global.asa that contain
    > > server
    > > > > address and that variable I am using as below.
    > > > > src =
    > > > >
    > > >
    > >
    >
    "<%=Application("Server")%>/gimages/Media_Temp/Templat3/images/template3_r19
    > > > > _c41.jpg"
    > > > >
    > > > > I am using so many times same variable in same page.
    > > > >
    > > > > I tried to add the variable one by one and error is coming some
    where
    > in
    > > > > mid.
    > > > > If I am not using this variable and giving the server address as
    hard
    > > > coded
    > > > > there is no error.
    > > > >
    > > > > This thing is giving me a real big problem...
    > > > >
    > > > >
    > > > > Error is below.
    > > > > Error Type:
    > > > > Microsoft VBScript runtime (0x800A0006)
    > > > > Overflow: '[number: 33362]'
    > > > >
    > > > >
    > > > > Kind Regards
    > > > > Fayyaz
    > > >
    > > >
    > >
    > >
    > >
    >
    >

    MFA Guest

  14. #13

    Default Re: What type of error is this ?

    When you get this error, does the page look like this in your browser?


    Microsoft VBScript runtime error '800a0006'

    Overflow: 'cint'

    /PATH/FILE.ASP, line 3



    Notice that it tells you the file in which the error is occurring and the
    line number in that file. It doesn't matter if it's in an include, or if
    you have the code sitting on a floppy disk. WHAT FILE. WHAT LINE NUMBER.
    WHAT IS ON THAT LINE IN THAT FILE?

    Ray at work






    "MFA" <MFA@MFA> wrote in message
    news:eU1eFw8lDHA.1884@TK2MSFTNGP09.phx.gbl...
    > Its giving error in any of parent file where I have included this file.
    >
    > And again let me tell u when I am doing the (below) changes in this file
    > error is coming.
    > If you want to see the parent code thats not possible as I am including it
    > in different files dynamiclly.
    > And I searched my whole project no where I am using Cint(), I am using
    > Clng() and cdbl() and even I changed cdbl() to clng() but no success.
    >
    > I think there is any limit or something towards using variables or
    specially
    > application() variables its not materr on converting interger or adding
    > integers.
    >
    > Any how thanks for your help.
    >
    > Regards
    > Fayyaz

    Ray at Guest

  15. #14

    Default Re: What type of error is this ?

    > you have the code sitting on a floppy disk. WHAT FILE. WHAT LINE NUMBER.
    > WHAT IS ON THAT LINE IN THAT FILE?
    I gave up a few days ago. Not worth being frustrated about... however maybe
    MFA could benefit from reading [url]http://www.aspfaq.com/2081[/url]

    And also doing this at the beginning of the file:

    <%
    srv = srv
    response.Write srv
    %>

    And then replacing all 221 calls to <%=Application("Server")%> to <%=srv%>

    (Reduces file size from 67k to 43k)


    Aaron Bertrand - MVP Guest

  16. #15

    Default Re: What type of error is this ?

    Here is the error exactly

    Error Type:
    Microsoft VBScript runtime (0x800A0006)
    Overflow: '[number: 33362]'


    "Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
    news:OuOwQG9lDHA.3688@TK2MSFTNGP11.phx.gbl...
    > When you get this error, does the page look like this in your browser?
    >
    >
    > Microsoft VBScript runtime error '800a0006'
    >
    > Overflow: 'cint'
    >
    > /PATH/FILE.ASP, line 3
    >
    >
    >
    > Notice that it tells you the file in which the error is occurring and the
    > line number in that file. It doesn't matter if it's in an include, or if
    > you have the code sitting on a floppy disk. WHAT FILE. WHAT LINE NUMBER.
    > WHAT IS ON THAT LINE IN THAT FILE?
    >
    > Ray at work
    >
    >
    >
    >
    >
    >
    > "MFA" <MFA@MFA> wrote in message
    > news:eU1eFw8lDHA.1884@TK2MSFTNGP09.phx.gbl...
    > > Its giving error in any of parent file where I have included this file.
    > >
    > > And again let me tell u when I am doing the (below) changes in this
    file
    > > error is coming.
    > > If you want to see the parent code thats not possible as I am including
    it
    > > in different files dynamiclly.
    > > And I searched my whole project no where I am using Cint(), I am using
    > > Clng() and cdbl() and even I changed cdbl() to clng() but no success.
    > >
    > > I think there is any limit or something towards using variables or
    > specially
    > > application() variables its not materr on converting interger or adding
    > > integers.
    > >
    > > Any how thanks for your help.
    > >
    > > Regards
    > > Fayyaz
    >
    >

    MFA Guest

  17. #16

    Default Re: What type of error is this ?

    > Error Type:
    > Microsoft VBScript runtime (0x800A0006)
    > Overflow: '[number: 33362]'
    We got that already, several times. Perhaps you missed the upper case
    portions of Ray's post. Here, I'll repeat them.
    > > WHAT FILE. WHAT LINE NUMBER.
    > > WHAT IS ON THAT LINE IN THAT FILE?
    Why do you insist on making debugging so painful?


    Aaron Bertrand - MVP Guest

  18. #17

    Default Re: What type of error is this ?

    Thanks very much all of you for your support and advises.
    I think I cannot explain to you more than this.

    Any how thanks again and regards.


    "Aaron Bertrand - MVP" <aaron@TRASHaspfaq.com> wrote in message
    news:#WeLrT#lDHA.424@TK2MSFTNGP10.phx.gbl...
    > > Error Type:
    > > Microsoft VBScript runtime (0x800A0006)
    > > Overflow: '[number: 33362]'
    >
    > We got that already, several times. Perhaps you missed the upper case
    > portions of Ray's post. Here, I'll repeat them.
    >
    > > > WHAT FILE. WHAT LINE NUMBER.
    > > > WHAT IS ON THAT LINE IN THAT FILE?
    >
    > Why do you insist on making debugging so painful?
    >
    >

    MFA Guest

  19. #18

    Default Re: What type of error is this ?

    Is this site available on the web? If so, can you post a link or something?
    There seems to be a barrier that exists that I think I can bypass by using
    http:// instead of person://.

    Ray at work

    "MFA" <MFA@MFA> wrote in message
    news:uf9FdR%23lDHA.2536@tk2msftngp13.phx.gbl...
    > Here is the error exactly
    >
    > Error Type:
    > Microsoft VBScript runtime (0x800A0006)
    > Overflow: '[number: 33362]'
    >

    Ray at Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139