S
Sean
I know I can pass a reference to a String into a Form by
overloading the Constructor.
Public Sub New(ByRef strDX As String)
MyBase.New()
InitializeComponent()
End Sub
Is there anyway to set a local value to point to that
memory address so that as I make changes on this form, the
referenced string is modified back on the calling form? Or
do I have implicitly set a public value or property or
call a function on the calling form from the active form
to update the value? Thanks.
Sean
overloading the Constructor.
Public Sub New(ByRef strDX As String)
MyBase.New()
InitializeComponent()
End Sub
Is there anyway to set a local value to point to that
memory address so that as I make changes on this form, the
referenced string is modified back on the calling form? Or
do I have implicitly set a public value or property or
call a function on the calling form from the active form
to update the value? Thanks.
Sean