Hi
Thanks
I do that but on a large Project the variables seem to have multiplied and
many have similar names e.g. I have declared sMsg in several places and want
to get to see what is non-null at the end of the project
Hope that makes some sort of sense
TIm
"Jim Thomlinson" <James_Thomlinson@owfg-Re-Move-This-.com> wrote in message
news:C26CF2B9-10C5-4C04-A067-(E-Mail Removed)...
> Generally speaking when you declare variables there are some standards to
> follow. Some people use the 1 letter prefix while others use a 3 letter
> prefix. That prefix is there to define the declaration type of the
variable.
> For example
>
> dim sMyName as String
> or
> dim strMyName as String
>
> Declare your variables that way and you will never wonder again... Take a
> look at the code posted by most of the MVP and similar and you will notice
> these naming conventions being used...
> --
> HTH...
>
> Jim Thomlinson
>
>
> "Tim Childs" wrote:
>
> > Hi
> >
> > it may sound a bit strange but is it possible to find, given a
variable
> > name, how it has been declared e.g. string, double etc
> >
> > i.e without simply finding the declaration statement
> >
> > thanks
> >
> > Tim
> >
> >
> >