Hi all of you;

Can you guys me how to insert data from form1 to other form2?


Thanks before hand!

Hi all of you;

Can you guys me how to insert data from form1 to other form2?


Thanks before hand!

Can you be a little more specific in what you mean?

If you just want to do something like show data from one form to another, you can do so by calling the name of the form and then the name of a property or control of that form, for example:

...
'this code example sets the value in the textbox (named TextBox1) on Form2 to the value of the Label (named Label1) on Form1
Form2.TextBox1.Text = Form1.Label1.Text
...

Let us know if this is along the lines of what you are trying to accomplish.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.