Hi everyone,
How to perform some forms grab script? I want to grab the existing form in my visual basic system to get the value. I hope you can share with me some idea on how to get this done properly. I am not that familiar with visual basic and just studying the functions.
Thanks.
Answered By
habibnur
0 points
N/A
#182436
How to perform some forms grab script?
To show a form in your Visual Basic system, you can grab the form with the help of the Show or ShowDialog system. For instance,
form2.ShowDialog()
Again, To show a form just choose the system, the My.Forms object in this way:
My.Forms.HelpInfo.ShowDialog()
Alternatively, you have the opportunity to publish a form that remains hidden through using the Me object. follow the example:
Me.ShowDialog()
Don’t forget to bear in mind that when you use the Me object, the program code is, of course, situated in the form you are handling.