How to Connect MySQL Database in Visual Basic. Net - Full Tutorial

  Рет қаралды 95,823

DJ Oamen

DJ Oamen

Күн бұрын

Пікірлер: 47
@unruly_ronin
@unruly_ronin 2 жыл бұрын
You're literally an Absolute lifesaver bro! Thanks sm for this. Made this work alot easier. All I need now is to figure out these references.
@DJOamen
@DJOamen 2 жыл бұрын
Glad I could help!
@AngelRod-nv9fd
@AngelRod-nv9fd 2 жыл бұрын
Been looking how to do this for 2 days now. Finnaly I learned how to do this. Thanks. Subsciribed and liked.
@DJOamen
@DJOamen 2 жыл бұрын
Glad it helped
@mdtmto
@mdtmto 2 жыл бұрын
Thanks a lot, Спасибо, все четко (everything is clear и (and) полной визуальной объяснениями (full visual explanations), мне очень помог этот видео (this video helped me a lot).
@DJOamen
@DJOamen 2 жыл бұрын
Thanks
@virajbenade5572
@virajbenade5572 2 жыл бұрын
If you give short description about reset button click event then video is so amazing 🤩 by the way video is amazing I clearly understand database connectivity of my SQL thank lot....😌😌😌
@DJOamen
@DJOamen 2 жыл бұрын
Thank you so much 😁
@user-io5mw7kz9d
@user-io5mw7kz9d Жыл бұрын
very informative !! thank you very much sir
@DJOamen
@DJOamen Жыл бұрын
So nice of you
@user-hf2cp2vp2i
@user-hf2cp2vp2i Жыл бұрын
Hello Oamen good day exceelnet video thanks for the hope.
@DJOamen
@DJOamen Жыл бұрын
Thanks you, for your kind comment
@Matt-zk9oi
@Matt-zk9oi 3 жыл бұрын
Thank you! This helped a lot.
@DJOamen
@DJOamen 3 жыл бұрын
Glad it helped!
@babeninelson6915
@babeninelson6915 2 жыл бұрын
You are a life saver man THANK YOU ! 🔥
@DJOamen
@DJOamen 2 жыл бұрын
Happy to help
@realfate7621
@realfate7621 2 жыл бұрын
really great useful and abbreviated - thanks a lot
@DJOamen
@DJOamen 2 жыл бұрын
You are welcome!
@kenkike4470
@kenkike4470 Жыл бұрын
Great video and clear explanation sir, but my question is where did the e.keychar came from in the vb shows that its not a member of the event args
@DJOamen
@DJOamen Жыл бұрын
In Visual Basic .NET, `e.KeyChar` is a property of the `KeyPressEventArgs` class. It represents the character that was pressed as a result of a keypress event. This property is often used in event handlers for keyboard-related events, such as the `KeyPress` event of a control like a `TextBox` or `KeyPress` event for a form. Here's a typical usage example: ```vb.net Private Sub TextBox1_KeyPress(sender As Object, e As KeyPressEventArgs) Handles TextBox1.KeyPress ' Check if the key pressed is a digit (0-9) If Char.IsDigit(e.KeyChar) Then ' Allow the digit to be entered into the TextBox ' You can add additional logic here if needed Else ' Cancel the keypress event to prevent other characters from being entered e.Handled = True End If End Sub ``` In this example, the `KeyPress` event of `TextBox1` is being handled. When a key is pressed in the `TextBox`, the `e.KeyChar` property contains the character associated with that key. The code checks if the character is a digit using `Char.IsDigit`, and if it is not a digit, it cancels the keypress event by setting `e.Handled` to `True`, preventing any other characters from being entered. You can use `e.KeyChar` to inspect and potentially modify the character entered in response to a keypress event.
@goldfield78
@goldfield78 3 жыл бұрын
Very useful, thank you sir.
@DJOamen
@DJOamen 3 жыл бұрын
You are welcome
@erdemcakmak
@erdemcakmak Жыл бұрын
Thank you :)
@DJOamen
@DJOamen Жыл бұрын
You're welcome!
@rheyjosedelatorre6473
@rheyjosedelatorre6473 Жыл бұрын
Good day sir. DId the things you added in datagrid were actually saved in mysql database and can be seen in the database?
@DJOamen
@DJOamen Жыл бұрын
Yes, it all saved on the database MySql
@rheyjosedelatorre6473
@rheyjosedelatorre6473 Жыл бұрын
@@DJOamen Thank you so much for the tutorial sir.👍
@HARSHRANAYT
@HARSHRANAYT 3 жыл бұрын
though your dedication is nice, also it helped me a lot, but when i click add new button then the new database i.e. the added row is not showed in datagrid.
@DJOamen
@DJOamen 3 жыл бұрын
Check your code
@HARSHRANAYT
@HARSHRANAYT 3 жыл бұрын
@@DJOamen Sir I have multichecked also I have the same code but I am supposed to restart the application as of now.....
@HARSHRANAYT
@HARSHRANAYT 3 жыл бұрын
@@DJOamen Sir, thanks for your reply, I found a new solution and that worked correctly, Thanks sir for your tutorial I loved this tutorial and Python Tkinter's Restaurant Management System Tutorial Thanks Sir!
@umarfaroukahmad5017
@umarfaroukahmad5017 2 жыл бұрын
please will this tutorial work on Sql server management studio?
@DJOamen
@DJOamen 2 жыл бұрын
Yes
@Ko_kB
@Ko_kB Жыл бұрын
Thanks... you're a life saver
@DJOamen
@DJOamen Жыл бұрын
Glad to hear that!
@ganiaaber4578
@ganiaaber4578 2 жыл бұрын
Please url in the project
@DJOamen
@DJOamen 2 жыл бұрын
url?
@albertschellenberg611
@albertschellenberg611 2 жыл бұрын
Which version of Visual Studio did you use?
@DJOamen
@DJOamen 2 жыл бұрын
Visual Studio 2019
@venkatkishore2331
@venkatkishore2331 Жыл бұрын
Sir I didn't save in the beggining my sql vb connector instead of that I saved windows app5 it showing error
@DJOamen
@DJOamen Жыл бұрын
You have now learnt a valuable lesson, you must always save your project right at the beginning.
@colenzjoachimcamero9019
@colenzjoachimcamero9019 4 ай бұрын
Pls give me the code, I've been trying for many days and there are still mistakes 😭
@DJOamen
@DJOamen 4 ай бұрын
Carefully watch the video tutorial, or become and Channel Members Channel Members can Download the Connect MySQL Database in Visual Basic. Net source code and modify it for their own personal use. Plus one other source code per month. Total - 2 Source codes Per Month, only: drive.google.com/file/d/1mhM-2uWqCu8nJFs3diPXyfjLv-tBFNKY/view?usp=sharing
@hibbansaeed9622
@hibbansaeed9622 3 ай бұрын
project naam bta dena eska
@DJOamen
@DJOamen 3 ай бұрын
How to Connect MySQL Database in Visual Basic. Net
@lucanwolfrl8044
@lucanwolfrl8044 Жыл бұрын
I don't have the apply button on the workbench app :
@DJOamen
@DJOamen Жыл бұрын
Check the toolbox
How to Change the Background Colour of a Notepad
3:15
DJ Oamen
Рет қаралды 18 М.
I Took a LUNCHBAR OFF A Poster 🤯 #shorts
00:17
Wian
Рет қаралды 16 МЛН
VB.NET MS Access Database Tutorial 1 # How to Connect Access Database to VB.Net
18:45
Programming in Visual Basic .Net: how to Connect SQL server  Database to VB.Net
14:23
Programming for Everybody
Рет қаралды 116 М.
Insert, Select, Delete and  Update from database in java
41:25
Khadem tech
Рет қаралды 56 М.