passing a string from one form to another

  • Thread starter Thread starter Bre-x
  • Start date Start date
B

Bre-x

Guest
Hello All,

My Startup form is fsea
on fsea I open another form using:

Dim newform As New ftick
newform.Show()

Once on "ftick"
I open another form using ftick_notes.ShowDialog()

I change the value on a text box, The click on Close
On my closed button I have

var_str = Me.txt_notes.Text
ftick.do_notes()
Me.Close()

the do_notes is a Public Sub (on ftick):

Me.txt_tnotes.Text = var_str
Me.txt_tnotes.Refresh()
utnotes = var_str
var_str = Nothing

The txt_tnotes does not change
What I am doing wrong?

Thank you All

Continue reading...
 
Back
Top