This response is if you are referring to Vb Variables: -
I have been using public variables for some time now, in
the following manner: -
1. Create a Module entitled "PublicVariables"
2. Declare all variables in here that are shared between
more than one Form/Procedure: -
Public TempStr,SearchString As String
etc....
HTH
Tony C.
>-----Original Message-----
>I would like to put the data retrieved in my
[quoted text clipped - 9 lines]
>Tina
>.
TC - 12 May 2004 04:55 GMT
(snip)
> Public TempStr,SearchString As String
You realize that defines TempStr as a Variant - not a String?
HTH,
TC