----- Original Message -----
From: "Corey Tisdale" <cor...@bbqguys.com>
To: "Thomas Trutt" <ti...@cornell.edu>
Cc: <win...@lists.mysql.com>
Sent: Tuesday, May 18, 2004 1:11 PM
Subject: Re: Another question.. Sorry...
I don't use VB all that much, but don't you have to dimension a
variable and assign it a value on two seperate lines?
I don't use VB all that much either, but I think you are thinking of arrays.
Probably it is confusing because "Dim" is used to declare variables of all
types. In this situation, there are no arrays.
However Tom's sample code is also incomplete; it does not show any value
being assigned to LocalData, so the declaration of it is superfluous. I
think "LocalData As New" is also incomplete, since it does not say what to
type create. "New" is used in VB to allow implicit creation of COM objects
and is only used for objects.