Hi all,
I am new to VB. I have to create one Windows Form application where user inputs the data and after the final submission, the entered data is displayed in the form of a word file. So far I have created 4 user forms each representing one step (out of total 4 steps).
When I load the 2nd form from the first, first form is still displayed at the background which I do not want. How do I make it word? I have used
Also, do I have to collect the data in a database first before creating the word file?
Please help me. Thanks in adv.
BR, Bhaskar
I am new to VB. I have to create one Windows Form application where user inputs the data and after the final submission, the entered data is displayed in the form of a word file. So far I have created 4 user forms each representing one step (out of total 4 steps).
When I load the 2nd form from the first, first form is still displayed at the background which I do not want. How do I make it word? I have used
Code:
Private Sub Next_Button_Click(sender As Object, e As EventArgs) Handles Next_Button.Click Step2.Show() End Sub
Please help me. Thanks in adv.
BR, Bhaskar
Comment