Thanks for your help. I thought the key word was initialization and looked in the help index with no luck. Thanks, again. Lloyd
--- In [email protected], "wavemechanic" <[EMAIL PROTECTED]> wrote: > > Did you look at the Users Manual or Help? Either one would give you the following: > > > Error 29. Variable <name> used without having been initialized. > You can not use (read) the variable that was not initialized first. You should assign the value to the variable before reading it. > > Example (incorrect usage): > > x = 1; > z = x + y; // wrong, y is not initialized > > Correct usage would look like this: > > > x = 1; // initialize x > y = 2; // initialize y > z = x + y; // correct, both x and y are initialized > > > ----- Original Message ----- > From: "burlap58" <[EMAIL PROTECTED]> > To: <[email protected]> > Sent: Tuesday, September 25, 2007 4:27 PM > Subject: [amibroker] Initialization > > > > > > I'm getting the following error message. How do I deal with it? > > Thanks, Lloyd > > > > > > Error 29. > > Variable 'testlow' used without having been initialized. > > > > > > > > Please note that this group is for discussion between users only. > > > > To get support from AmiBroker please send an e-mail directly to > > SUPPORT {at} amibroker.com > > > > For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: > > http://www.amibroker.com/devlog/ > > > > For other support material please check also: > > http://www.amibroker.com/support.html > > > > Yahoo! Groups Links > > > > > > >
