it is abt forms & proprieties can you enter to help please ??
-
Hi , sorry the title wasn't clear enough isn't it ?? anyway thank you , i will give you an example to let you better understand i have two forms in the first i have a textbox & a button & in the second i have a label & a button too i want when i pick the button in the first form ,the second form shown & when i pick the button of the second one , the content of the textbox in the first form shown on the label i hope you understand this stupide english :confused: please if you know how just tell me thank you again try to be good if you can't be the best
-
Hi , sorry the title wasn't clear enough isn't it ?? anyway thank you , i will give you an example to let you better understand i have two forms in the first i have a textbox & a button & in the second i have a label & a button too i want when i pick the button in the first form ,the second form shown & when i pick the button of the second one , the content of the textbox in the first form shown on the label i hope you understand this stupide english :confused: please if you know how just tell me thank you again try to be good if you can't be the best
In Form1's Button Click event, write the following code. [code] Load Form2 Form2.Show [/code] In Form2's Button Click event, write the following code. [code] Me.Label1.Caption=Form1.Text1.Text [/code]