How can I make Dim sString As String visible globally?

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)
 
H

Herfried K. Wagner [MVP]

* 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.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top