I am new in VB.NET and at the bigining of my work I have a problem. I wont
to make small program which contain 3 forms. In the 1st Form I put 10
Textbox which
contents I need to display in the 3th form. This 3th form I connect with
button
OK. I wont that user in 1st form input name, date of bearth, etc. in
textboxes and to show in the 3 form like this: "My name is" & name & " and I
was born" & date of bearth...
If someone can halp me I will appreciate!
PS: My english is not very well but I hope that you understand what I want
to say.
Best regards
Mihailo
"Mihailo" <aldeiro24@yahoo.com> schrieb:
>I am new in VB.NET and at the bigining of my work I have a problem. I wont
> to make small program which contain 3 forms. In the 1st Form I put 10
[quoted text clipped - 5 lines]
> I
> was born" & date of bearth...
\\\
Dim f As New Form3()
f.Label1.Text = "My name is " & Me.TextBox1.Text & ...
f.Show()
///

Signature
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Mihailo - 30 Jan 2005 13:19 GMT
> Dim f As New Form3()
> f.Label1.Text = "My name is " & Me.TextBox1.Text & ...
[quoted text clipped - 5 lines]
> M V P <URL:http://dotnet.mvps.org/>
> V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Thanks a lot.
Mihailo