How can I make Dim sString As String visible globally?

  • Thread starter Thread starter Trint Smith
  • Start date Start date
T

Trint Smith

I have several strings in my project that I want all programs in the
project to be able to see...How do I do that?
Thanks,
Trint

.Net programmer
(e-mail address removed)
 
* Trint Smith said:
I have several strings in my project that I want all programs in the
project to be able to see...How do I do that?

In a module, just type 'Public TheString As String'...

(Notice that this is not best practice.)
 
Back
Top