How to Create Login Form in VB.NET using SQL Server Database?

  Рет қаралды 54,224

RunCodes

RunCodes

Күн бұрын

Пікірлер: 62
@RunCodes
@RunCodes 7 ай бұрын
New ways: How to Create a Login Form in VB.NET using SQL Server Database and Visual Studio 2022? [Source Code] kzbin.info/www/bejne/gZPUl4OXq9J_gc0
@thomasschnell9932
@thomasschnell9932 2 жыл бұрын
Very good tutorial - only one little thing is missing with a big effect: dt.clear() at the beginning, so that the datatable is emptied when you try again, because otherwise, after the first successful login, every further error will be ignored and it will only say SUCCESS.
@psalmyjoygelacio6278
@psalmyjoygelacio6278 3 жыл бұрын
It worked... You got my subscribed.. Keep it up
@Divyakrishnankumar
@Divyakrishnankumar 2 жыл бұрын
My database name is login but still says invalid... N throws exception at sda. Fill(dt) Please help!!!!!! Need to submit my project in 2days
@thomasschnell9932
@thomasschnell9932 2 жыл бұрын
Sehr gutes Tutorial - es fehlt nur eine Kleinigkeit mit großer Wirkung: dt.clear() am Anfang, damit die DataTabele beim neuen Versuch geleert ist, denn ansonsten passiert nach dem erstmaligen erfolgreichen Anmelden, dass jeder weitere Fehler ignoriert wird und es nur noch ERFOLRECH heisst.
@mallikarjunyt4518
@mallikarjunyt4518 2 жыл бұрын
Thank you so much bro I made beautiful login form
@ScarChrome
@ScarChrome Жыл бұрын
Thank you so very much you've helped a lot
@jhobanthat
@jhobanthat 3 жыл бұрын
This video helps me a lot.Thanks
@reallifeempire4429
@reallifeempire4429 4 жыл бұрын
Thanks a lot This really helped me
@zerosixteen.4644
@zerosixteen.4644 8 ай бұрын
I got error in sda.Fill(dt) , currently I am using visual studio and 2024 SQL server.
@RunCodes
@RunCodes 8 ай бұрын
How to Create a Login Form in VB.NET using SQL Server Database and Visual Studio 2022? [Source Code] kzbin.info/www/bejne/gZPUl4OXq9J_gc0 use this new technique
@handsomeako4343
@handsomeako4343 2 жыл бұрын
Thank you very much you saved me!
@shahg390
@shahg390 3 жыл бұрын
Can you please make a video to authenticate against active directory if the user is on domain. That will be great help.
@jorgezumbado3495
@jorgezumbado3495 3 жыл бұрын
it says type 'SqlConnection' is not defined but I do the imports, also under references it (system.Data.SqlClient) is enabled.
@RunCodes
@RunCodes 3 жыл бұрын
create new project!
@joswinborleo-gistcogeo1703
@joswinborleo-gistcogeo1703 3 жыл бұрын
nope, just install the system.data.sqlclient in your nugets design and it's done
@mdnazimuddin678
@mdnazimuddin678 2 жыл бұрын
Simple and excellent!!!
@LordMpW
@LordMpW 3 жыл бұрын
Very good, well done!
@joshuaseballos3306
@joshuaseballos3306 3 жыл бұрын
I tried publishing it and sent it to other device for use, the register form i made with it crashed
@RunCodes
@RunCodes 3 жыл бұрын
When you send to other devices, you have to create database on that device and have to change the connection string. Only then it will works!
@joshuaseballos3306
@joshuaseballos3306 3 жыл бұрын
@@RunCodes is there a way that it changes the directory after they run the set up? Im eager to learn a lot and how I can improve what I know 😄
@Divyakrishnankumar
@Divyakrishnankumar 2 жыл бұрын
It says invalid object login.... Please help
@RunCodes
@RunCodes 3 жыл бұрын
do you like our work? does this tutorial help you? if so, you can support us at www.patreon.com/RunCodes
@codeeasily1630
@codeeasily1630 3 жыл бұрын
sda.Fill(dt) error how to solve please explain
@RunCodes
@RunCodes 3 жыл бұрын
use latest visual studio!
@martynaustria4027
@martynaustria4027 3 жыл бұрын
Same error I installed visual studio 2019
@tobiojo3276
@tobiojo3276 2 жыл бұрын
Nice tutorial. link to download the sql server database
@AnandKumar-fo8rb
@AnandKumar-fo8rb 4 жыл бұрын
Thank you connected successfully
@salutinmarjoriedelacruz3718
@salutinmarjoriedelacruz3718 2 жыл бұрын
THANK YOUUUU
@martynaustria4027
@martynaustria4027 3 жыл бұрын
Dim con As SqlConnection = New SqlConnection("Data source = DESKTOP-DILIAA0;Initial Catalog=roleofaccessdb;Integrated Security = True") Dim cm As SqlCommand = New SqlCommand("select * from login where USERNAMELOGIN ='" + TextBox1.Text + "'and PASSWORD= '" + TextBox2.Text + "'", con) Dim sda As SqlDataAdapter = New SqlDataAdapter(cmd) Dim dt As DataTable = New DataTable() sda.Fill(dt) i have error in the line of sda.Fill(dt) System.InvalidOperationException: 'The SelectCommand property has not been initialized before calling 'Fill'.'
@RunCodes
@RunCodes 3 жыл бұрын
use latest version of Visual Studio
@martynaustria4027
@martynaustria4027 3 жыл бұрын
@@RunCodes Im using vs2019
@natoisnazi
@natoisnazi Жыл бұрын
Change Dim cm to Dim cmd
@_AkshayAthavale
@_AkshayAthavale 3 жыл бұрын
For this videos i subscribe you thanks
@RunCodes
@RunCodes 3 жыл бұрын
You are most welcome 😊
@sudiptodas7577
@sudiptodas7577 3 жыл бұрын
thanks alot sir thank you
@sportspoint-kb2qf
@sportspoint-kb2qf Жыл бұрын
why not login
@MM-od3sg
@MM-od3sg 3 жыл бұрын
How to Encrypt the password during the login?
@RunCodes
@RunCodes 3 жыл бұрын
docs.microsoft.com/en-us/dotnet/visual-basic/programming-guide/language-features/strings/walkthrough-encrypting-and-decrypting-strings
@14_mohandevipujak29
@14_mohandevipujak29 3 жыл бұрын
Sda.fill (dt) me error aa rahi hai
@14_mohandevipujak29
@14_mohandevipujak29 3 жыл бұрын
Please reply
@RunCodes
@RunCodes 3 жыл бұрын
Use latest IDE!
@keepsmiling9882
@keepsmiling9882 2 жыл бұрын
Lub you bro
@mohamedabdisalanali7752
@mohamedabdisalanali7752 4 жыл бұрын
Keep goin pro
@dancelivandanej.8086
@dancelivandanej.8086 3 жыл бұрын
u lost me at sql server, i dont know where to go 3:20
@RunCodes
@RunCodes 3 жыл бұрын
open sql server you will see this window!
@pranavgaikwad.11
@pranavgaikwad.11 4 жыл бұрын
How to create signup form ?
@RunCodes
@RunCodes 4 жыл бұрын
kzbin.info/www/bejne/inbNqpZmq76fbKc
@pranavgaikwad.11
@pranavgaikwad.11 4 жыл бұрын
@@RunCodes ya I got it ...😅 Searched in your videos ! Thanks for the support man 👍
@peaceseeker7419
@peaceseeker7419 Жыл бұрын
Brother are u nepali
@RunCodes
@RunCodes Жыл бұрын
Yup!
@peaceseeker7419
@peaceseeker7419 Жыл бұрын
Accent bata yad pai halyo 😂
@dhanajideshmukh3705
@dhanajideshmukh3705 2 жыл бұрын
SQL server konasa he
@RunCodes
@RunCodes 2 жыл бұрын
2014!
@sportspoint-kb2qf
@sportspoint-kb2qf Жыл бұрын
❤❤🎉🎉
@mbstn6929
@mbstn6929 3 жыл бұрын
i get eror in sda.fill (dt)
@RunCodes
@RunCodes 3 жыл бұрын
Use latest IDE!
@mbstn6929
@mbstn6929 3 жыл бұрын
@@RunCodes Ty bro It Works fine now
@zerosixteen.4644
@zerosixteen.4644 8 ай бұрын
@@RunCodes does it need to have the same supported version in vb net and the sql server?
@RunCodes
@RunCodes 8 ай бұрын
@zerosixteen.4644 How to Create a Login Form in VB.NET using SQL Server Database and Visual Studio 2022? [Source Code] kzbin.info/www/bejne/gZPUl4OXq9J_gc0 use this technique
@mostafabarzegar250
@mostafabarzegar250 3 жыл бұрын
(vb.net) i want open form 1 with key pressed 25 and open form 2 with key pressed 2 a in main form
@RunCodes
@RunCodes 3 жыл бұрын
??
Walking on LEGO Be Like... #shorts #mingweirocks
00:41
mingweirocks
Рет қаралды 6 МЛН
PIZZA or CHICKEN // Left or Right Challenge
00:18
Hungry FAM
Рет қаралды 15 МЛН
Create Login Form with Sql Database - Step by step - Vb.net
17:33
How to create login form with ms-access database in vb.net
11:40