Prev: msgbox title issue
Next: Error 8004000
From: Elijah Oliver on 24 Mar 2010 10:31 Message-ID: <6ec475c91c6d4736939ce19d0ad43017(a)newspe.com> X-Mailer: http://www.umailcampaign.com, ip log:75.131.114.20 Newsgroups: microsoft.public.scripting.vbscript NNTP-Posting-Host: 22.bb.5446.static.theplanet.com 70.84.187.34 Path: TK2MSFTNGP01.phx.gbl!TK2MSFTNGP02.phx.gbl!newspe.com Lines: 1 Xref: TK2MSFTNGP01.phx.gbl microsoft.public.scripting.vbscript:228038 I need help I am getting: Microsoft VBScript runtime error '800a0009' url:http://www.ureader.com/msg/16754779.aspx
From: mayayana on 24 Mar 2010 11:49 It helps if you post the error description. Most people don't memorize the numbers, and there's no reason we should have to follow a webpage link to get the description. It also helps to post code. Nobody can offer much help if they have no idea of what your script looks like. Best is if you post the part that's giving you trouble and note the line where the error happens. As your link explains, "subscript out of range" usually means that you're trying to access an array index that doesn't exist. "Subscript" is just an excessively fancy way of saying "index". The typical way that problem happens is by mixing up the start point: Collections start with 1. A string's length is measured starting at 1. But an array begins at 0. > I need help I am getting: > Microsoft VBScript runtime error '800a0009' > > url:http://www.ureader.com/msg/16754779.aspx
From: Al Dunbar on 24 Mar 2010 19:53 "mayayana" <mayayana(a)nospam.invalid> wrote in message news:ugG5DE2yKHA.2644(a)TK2MSFTNGP04.phx.gbl... > It helps if you post the error description. Most > people don't memorize the numbers, and there's > no reason we should have to follow a webpage link > to get the description. > > It also helps to post code. Nobody can offer > much help if they have no idea of what your > script looks like. Best is if you post the part > that's giving you trouble and note the line where > the error happens. > > As your link explains, "subscript out of range" > usually means that you're trying to access an array > index that doesn't exist. "Subscript" is just an > excessively fancy way of saying "index". The typical > way that problem happens is by mixing up the > start point: Collections start with 1. A string's > length is measured starting at 1. But an array > begins at 0. Good answer. I was simply going to respond that he can find the answer to his question here: http://www.ureader.com/msg/16754779.aspx /Al > > >> I need help I am getting: >> Microsoft VBScript runtime error '800a0009' >> >> url:http://www.ureader.com/msg/16754779.aspx > >
|
Pages: 1 Prev: msgbox title issue Next: Error 8004000 |