EXCELLENT ! Man... like I said... you were born to teach ! Perfect ! Thank you. I'll spread out your amazing and instructive videos ! I've seen lots of them (before I got you...) but none like yours !
@kevins17387 жыл бұрын
Excellent! This is somewhat of a "basic" technique but SUPER USEFUL and well done :)
@RavenSaint19 жыл бұрын
This helped me get past the error and Alerts of bad coding between forms. I hope I can modify this to send text for a writeline to a listbox/*.txt on form1 from a textbox on form2.
@sultanalharby55624 жыл бұрын
Thank you very much! it helped me much!
@louiswilkinson42587 жыл бұрын
Your video is very informative - Thank you !!
@Jon271118079 жыл бұрын
I just skimmed through this video and was wondering would this work for a login system where when a user logs in their name will be displayed on the other forms but add that code to a panel or some tool?
@Jon271118079 жыл бұрын
The way you mirrored the text
@VBToolbox9 жыл бұрын
+Jonathan Taylor I would just create a Public Shared Class or store the session info as Global variables. Once populated they could be easily called from any form. :-)
@Jon271118079 жыл бұрын
VB Toolbox okay cheers I'll research how to do that :)
@devindwight456410 жыл бұрын
Multi-forms are the bomb-diggity!
@VBToolbox10 жыл бұрын
Check out the extension methods! Now, there's some awesomesauce. :-D
@colinlamont2464 жыл бұрын
I use continuous form view in my Access projects, what would be the vb.net equivalent to this type of view?
@muhammadkholis48293 жыл бұрын
Makasih banyak
@durrhurr556 жыл бұрын
Lol switching from procedural html/js to vb made me have a giant mental breakdown for about a month
@sandrolanzon8 жыл бұрын
thanks for the tutorioal it was very helpful, I need to run a sub in form1 whenever I close form2, how can I achieve that?
@VBToolbox4 жыл бұрын
Just make sure the Sub in form1 is Public and you should be able to call Form1.YourSubName in the Form2_Close or Closing events. Edit: Oh geez.. just noticed this was 4 years old... ☺ Well... Maybe someone else needs to hear it.
@michaelgoedeker96979 жыл бұрын
Thank You very Much! This helped me a ton!
@johnisawsomeme8 жыл бұрын
+VB Toolbox is there a way where i can change the form display without having multiple forms? i want to make a jeopardy game, so whenever i click an answer button, and instead of opening a different form, it just changes its display?
@dans35937 жыл бұрын
You can change the visibility of a button or other element to false like this: Button1.Visibility = False Label1.Visibility = True Then you can put the element that you want to show up directly behind the button. Hope this is what you needed, even though you probably moved on from this question or figured it out by now!
@profility4 жыл бұрын
Use a panel, it’s more simple than making each control visible.
@pconstantinos578 жыл бұрын
In VB6 there is an option for the show property called vbModel. vbModal dosen't work in VB2010. Is there a version for .net?
@VBToolbox8 жыл бұрын
Hello, Pete. Sorry for the long delay. I'm trying to get caught up. I believe that you will want to use YourForm.ShowDialog() instead of YourForm.Show(). I hope that's right. I'm extremely rusty on VB6.
@sushilkhatri9 жыл бұрын
HI there, is it possible to have wire-framing intersection on form, for example when i click on a button on form 1 then it goes to form 2 without having two window open just like on phone device. Thanks for your help
@VBToolbox9 жыл бұрын
+sushil khatri You can easily Hide the current form when you switch to the next by doing something like this: In Form1 [Button Click]: Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click Form2.Show() Me.Hide() End Sub In Form2 [Button Click]: Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click Form1.Show() Me.Hide() End Sub
@UnknowGuy3mill9 жыл бұрын
+VB Toolbox Is it another beside just hiding it?
@LightningStruckElf10 жыл бұрын
Very helpful but I'd like to know how to use variables declared in one form, in another form. For example if I declared a variable in Form1 and want to use it in both Form1 and Form2.
@VBToolbox10 жыл бұрын
Define the variable as Public in the form class (not in a sub). Example: Public MyVariable As Integer = 12 You should be able to find the variable in the other form: Form1.MyVariable
@LightningStruckElf10 жыл бұрын
Thanks.
@techondemand_2 жыл бұрын
kzbin.info/www/bejne/r6DPp3lmfrSonZI
@sajusathish8 жыл бұрын
is it possible to create form inside form i don't want a pop up form like a web page in an application
@VBToolbox8 жыл бұрын
Greetings, s saju. :-) What you need is MDI forms. I have a tutorial for this: kzbin.info/www/bejne/j6jbaHqYr5aglc0
@GLocarso5 жыл бұрын
Thanks Mate!
@YellowGamePlay8 жыл бұрын
hi, i made a form1, but then i decided i wanted a ''menu screen" so i made form2. but how do i make form2 to be the 'main' form. so it launches first
@VBToolbox8 жыл бұрын
+YellowGamePlay If you right click on your Project in the Solution Explorer and select Properties, in the Application tab you can set your Startup Form.
@YellowGamePlay8 жыл бұрын
VB Toolbox Thanks alot!
@christine02310 жыл бұрын
Can i add another visual basic project i have made to my current project?
@VBToolbox10 жыл бұрын
You sure can. Just go to File --> Add --> Existing (Or New) Project. This will put both projects in the same solution.
@christine02310 жыл бұрын
Thank you! :)
@VBToolbox10 жыл бұрын
You're very welcome, Christine. Glad I could help. :-)
@PapaYosif8 жыл бұрын
is there a way to make a label with the name of the guy who runs it his pc? like idk MLG-PC
@VBToolbox8 жыл бұрын
You can get the current user and the computer name like this: ' get username Label1.Text = Environment.UserName ' get hostname Label2.Text = System.Net.Dns.GetHostName
@PapaYosif8 жыл бұрын
VB Toolbox thx bruu
@profility4 жыл бұрын
label1.Text = Environment.UserName
@alpha3twin10 жыл бұрын
If only Goku knew about this method of changing forms :P
@lancetv48264 жыл бұрын
Thanks, but Me doesn't work anymore. Instead, i use this.
@alexmartin50026 жыл бұрын
Спасибо!!
@eliguerrero98756 жыл бұрын
great video, could you help me with MDI parent form??
@eltigrepalomino21769 жыл бұрын
me gusto el vídeo , pero me gusto mas este por que te explica paso a paso les dejo las direcciones : Inicio de programa: kzbin.info/www/bejne/Z4TVfn6fpdmJfbM Login con efectos: kzbin.info/www/bejne/iGSTqJ6wrph8iM0 formulario con iconos con efectos de movimientos en V.B: kzbin.info/www/bejne/a2Swi4iGgLl8ntE
@grazianofalcone30932 жыл бұрын
Useless " Public myform(10) as new FORM, myform(1).show