B
Barret Bonden
Heresy ?
I successfully and simply passed data from one form to another. (this
after days of frustration at the methods I read of and that felt to me to be
verbose and over exact)
I created a public variable with :
Public shared v as string (shared being the key, I suspect)
And on another form having created a copy of the first (with the variable v
in it)
Dim f2 as new form1
Textbox1.text=f2.v
Have I committed heresy ? Am I bound for OO purgatory ? Or if not a symbolic
(NPI) crime, are there any real negative ramifications to using such
variables commonly ?
I successfully and simply passed data from one form to another. (this
after days of frustration at the methods I read of and that felt to me to be
verbose and over exact)
I created a public variable with :
Public shared v as string (shared being the key, I suspect)
And on another form having created a copy of the first (with the variable v
in it)
Dim f2 as new form1
Textbox1.text=f2.v
Have I committed heresy ? Am I bound for OO purgatory ? Or if not a symbolic
(NPI) crime, are there any real negative ramifications to using such
variables commonly ?