VB.NET Tutorial - Drag and Drop
44:24
Пікірлер
@borisslezinger474
@borisslezinger474 2 күн бұрын
Do you have tutorial to use SQL Store Procedure with output parameters?
@digitalworld2382
@digitalworld2382 3 күн бұрын
My VB6 project was not working but with your help I will be able to convert it again to VB10, thank you BRO. thanks a lot....
@LucyTaylor-n4m
@LucyTaylor-n4m 18 күн бұрын
Young Melissa Moore Helen Lee Amy
@GkjcAmpj-s2g
@GkjcAmpj-s2g 22 күн бұрын
Brown Sandra Thomas Anna Miller Timothy
@dickevans1427
@dickevans1427 Ай бұрын
This is an excellent video but I am using Visual Express 2022 and using Imports System.Data.SqlClient, but SqlConnection does not show up.
@dickevans1427
@dickevans1427 Ай бұрын
Got it, thanks for looking
@10Uwatch
@10Uwatch Ай бұрын
Thank you for giving out simple instructions for easy understanding. I really like your channel.
@revram79
@revram79 Ай бұрын
I Really Like Your Tutorial, it's very easy to understand. especially for beginners. Thank you.. and I hope your channel will grow even more
@dylanobrien462
@dylanobrien462 2 ай бұрын
It doesn't seems to be working for me the client says connected but the text never makes it to the server i also tried downloading the code files here and they were exactly the same where the text when away but never ended up at the server
@jansterenborg
@jansterenborg 3 ай бұрын
Not working here.. Question what or where can I find a working internal or private IP address?
@leansixsigmabusinessoperat4833
@leansixsigmabusinessoperat4833 4 ай бұрын
Thank you so much .................................!! You're doing a great help to the generations of learners
@shaktidevelops
@shaktidevelops 5 ай бұрын
Please update dropbox link. It's not working.
@VBToolbox
@VBToolbox 5 ай бұрын
Hi there, @shaktidevelops! I have updated the Dropbox link with the Part 5 source code: www.dropbox.com/scl/fi/62r9kltm4d194x4f3cl2v/SQLTutorial-PT5.zip?rlkey=e60ij41lefzl47qf4jtt466gb&dl=0 I hope it helps!
@k1ng50
@k1ng50 6 ай бұрын
Thanks for the nice presentation. It has been 5-6 years since I last created stored procedures, so this jostled my brain and shook off some of the cobwebs. Thanks!
@k1ng50
@k1ng50 6 ай бұрын
Awesome tutorial! Very helpful and fun.
@k1ng50
@k1ng50 6 ай бұрын
Thank you very much for a well-organized, clear tutorial. I did a lot of VB4 programming in the 1990s but none since. I retired a few years ago and wanted to resurrect and continue a project I did back then. This video served as a great refresher and I am ready to continue your series.
@RXY7
@RXY7 7 ай бұрын
Thank you so much. I hope you are doing very well.
@VBToolbox
@VBToolbox 7 ай бұрын
Thank you!
@TheFaximana
@TheFaximana 7 ай бұрын
great video - I've got a question: I have quite the same task, but my "drop-button" is inside of a a panel which is inside of a tab-control inside the form.. just when dragging the file over the form/tab-control/panel the mousepointer changes to a prohibition sign - my question is if I Do have do declare the whole form/tab-control/panel as "allow drop"?
@pw3111
@pw3111 7 ай бұрын
As Visual studio no longer supports local database in Add, New Item, Data, and System.Data.sqlserverce is not on the Reference list, it took a bit of working out to get a sdf file written but perseverance paid off. Thanks again for your efforts.
@pw3111
@pw3111 7 ай бұрын
Welcome back!
@pw3111
@pw3111 7 ай бұрын
Just started this SQL series of videos after your Access ones. Excellent and a lot to learn😊
@VBToolbox
@VBToolbox 7 ай бұрын
Awesome! Very happy you're enjoying the series! SQL server is still my favorite DB to work with. :-)
@pw3111
@pw3111 8 ай бұрын
I've got a problem with the delete by dgvData_CellClick method. If I click off the actual values I get the following error message System.InvalidCastException: 'Conversion from type 'DBNull' to type 'String' is not valid.' I was under the impression that your " ' PREVENT OUT OF INDEX RANGE ERRORS If e.RowIndex < 0 Or e.ColumnIndex < 0 Then Exit Sub" would handle it but it doesn't seem to be. Any suggestions?
@VBToolbox
@VBToolbox 8 ай бұрын
Hi, @pw3111! The index out of range prevention is only to handle errors when clicking to the far top or left where a negative index value was produced. The casting error you're seeing seems more related to the actual data in your dgv or database where it's trying to translate or do something with a NULL record from your table. Are you using this for another project or just copying the tutorial? It's a little tricky to troubleshoot without seeing the code and data and I'm a little rusty, but if it's a small project you could share, I can see if I can figure out the issue.
@pw3111
@pw3111 8 ай бұрын
@@VBToolbox on my access data base, there is a blank row at the bottom with a * on the far left. This is where a new entry will go and is present on all Access databases I build. It’s when I Click into this row that the error occurs. On your “delete “ example program, there is no blank line at the bottom of your database so there is nothing to click into to cause the error. How did you accomplish this as all my databases have this empty bottom row? I can hide this bottom row by choosing “Addaddition=false” in the database properties but then I can’t enter a new record. Thanks for any help.
@pw3111
@pw3111 8 ай бұрын
Problem solved!, On datagridview for my delete forms, I clicked on the top right hand corner of the datagridview and unchecked the “enable adding” option. I left it checked on the any forms where I wanted to add data. Once again your videos have been very educational and your replies have been very helpful as well as they point me in the right direction and make me think. Thanks.
@VBToolbox
@VBToolbox 8 ай бұрын
@@pw3111 Hello! Sorry I wasn't able to get back earlier. That is great news that you were able to resolve the issue! Thank you for sharing the resolution. It may be helpful in the event that someone else encounters something similar. :-)
@trollstrings
@trollstrings 8 ай бұрын
Only 6 words! Thank you! Thank you! Thank you! 👍👍👍
@VBToolbox
@VBToolbox 8 ай бұрын
You're very welcome! 😀 I'm happy that the videos were helpful.
@pw3111
@pw3111 8 ай бұрын
Thanks you for a great series of videos. I’ve used your methods on a number of programs I use at home. Is it possible to set up a DBControl Class using Excel instead of Access as I’d like to replicate your programs for my daughter but using an Excel Spreadsheet as that’s what she receives from the head company. She doesn’t have the ability to change to Access Thanks for any advice
@VBToolbox
@VBToolbox 8 ай бұрын
Hi there, PW! This is absolutely possible and I had actually created a DBControl (ExcelControl) class a long time ago, but I don't think I ever made a tutorial on it. DropBox Link: www.dropbox.com/s/n344lectco5uw2p/ExcelADO.zip?dl=0 It's slightly different than the others, but still very similar and usage on the application side should be the same. Please bear in mind that this is many years old now and the connection string might need a little tweaking for newer versions of Excel. Connectionstrings.com is a wonderful resource for these and should have everything you need for the ACE and JET drivers for excel (and every other database). I hope it helps!
@VBToolbox
@VBToolbox 8 ай бұрын
Oops! Sorry about the last link. That actually was for the entire Excel project I had made, I think - which could still be useful as an example. I meant to send this text link, which is just the class code: www.dropbox.com/s/4xutj0fvz10c9wq/ExcelControl.txt?dl=0
@pw3111
@pw3111 8 ай бұрын
Thanks. I'll certainly put it to good use😁@@VBToolbox
@pw3111
@pw3111 8 ай бұрын
Is it possible to have a "wildcard" file entry in the Control so the user can search for, and load their own file from Form1? Cheers @@VBToolbox
@lifeonearth7040
@lifeonearth7040 9 ай бұрын
Most of tutorials on KZbin have videos where written items on screen are not clear that makes difficult for beginners
@GlennMaks
@GlennMaks 10 ай бұрын
I do so much appreciate your tutorials .. you are a Excellent Teacher .. thank you
@aymanabdullah813
@aymanabdullah813 Жыл бұрын
Can you give us a web api tutorial i love ur ways in teaching
@mohammadnoman9591
@mohammadnoman9591 Жыл бұрын
welcome back
@aymanabdullah813
@aymanabdullah813 Жыл бұрын
Glad to see you back 😍
@rowanlidbury
@rowanlidbury Жыл бұрын
Sequel..? Like in a film.? As apposed to SQL.
@Chris-by8eh
@Chris-by8eh Жыл бұрын
when starting out I never know what namespaces I should be added in. like in this example the drawing space ? is there a cheat sheet on namespaces and what they are used for ?
@technousr
@technousr Жыл бұрын
This was an awesome tutorial as I appreciate the details that you go through. I did have one follow up question regarding the AuthUser variable and how it would be used. After the user has been authenticated, what would you need to use the AuthUser variable for since you are using a system account to execute any SQL with the database?
@truediamant777
@truediamant777 Жыл бұрын
can you make the background image transparent? i want a base project that is an invisible window which will display content, maybe using another rectangle object would do?
@jasonport6691
@jasonport6691 Жыл бұрын
This is fantastic. Could you please do a family tree structure?
@hemendrapadia7709
@hemendrapadia7709 Жыл бұрын
great
@bdeealmamry9557
@bdeealmamry9557 Жыл бұрын
please install vedio for this
@bdeealmamry9557
@bdeealmamry9557 Жыл бұрын
how to connect sql server client/server application host data base
@ericamaya1449
@ericamaya1449 Жыл бұрын
Excellent , very usefull👍
@doreymorre6035
@doreymorre6035 Жыл бұрын
Promo*SM 😁
@BurkhardusX
@BurkhardusX Жыл бұрын
Its enough to set the form boderless, you dont need to make the control box and the text disappear all separately.
@BijuVarghese
@BijuVarghese Жыл бұрын
Is there any way we can modify to use sqlcontrol module for "BeginTransaction" Commit / rollback transaction?
@VBToolbox
@VBToolbox 5 ай бұрын
So sorry for the way late reply. For some reason I didn't get notified. I'm fairly certain I tested this years ago and it worked, but is probably best implemented within your stored procedure. Unfortunately, I don't have any examples as I haven't tested this for years.
@gopalvarshney7126
@gopalvarshney7126 Жыл бұрын
Kripya data reader ke bare mai bataye
@morelearna2101
@morelearna2101 Жыл бұрын
kzbin.info/www/bejne/g2PNc6mKiq2Lg5I
@derrickwalker3018
@derrickwalker3018 Жыл бұрын
Great work! How do you call the new connection string?
@rayt6867
@rayt6867 Жыл бұрын
Hello and many thanks for these exceptional videos, you are the only one that I know off that makes a DBControl class to handle database operations. I didn't know the ExecuteQuery handles CRUD operations. Now I know thanks to you. Please, could it be possible that you can create a video(s) using two or more tables with 1-to-many relationships using DBControl. It will be greatly appreciated.
@VBToolbox
@VBToolbox 5 ай бұрын
I'm very sorry for the super late reply. I didn't receive a notification about your question. By now, you have likely already figured out how to do this, but the DBControl as is will handle table joins within your query string. It is, however, preferred that this be done within your Stored Procedure instead of within the query string.
@derrickwalker3018
@derrickwalker3018 Жыл бұрын
Thanks for the video. I'm having trouble getting to the download for this session. Is it possible you can take a look at it because I'm having some trouble getting it to work?
@VBToolbox
@VBToolbox Жыл бұрын
Hi, Derrick! Sorry, I just noticed that the download link on the video is for Part 4. I didn't add a download for this video. Unfortunately, my internet is down and I'm awaiting replacement parts. Are you having trouble with any part in particular?
@derrickwalker3018
@derrickwalker3018 Жыл бұрын
@@VBToolbox I think that I figured it out :-). I would like some help using the New Connection string, however. I can't seem to figure that part out. BTW, a donate button would be cool because you're helped me greatly and I wouldn't mind donating to your continued success.
@Mark-kh1ny
@Mark-kh1ny Жыл бұрын
I laughed like a small boy when you wrote pubic. I don’t know what’s wrong with me. Maybe I never will really grow up 😆
@VBToolbox
@VBToolbox Жыл бұрын
Hah! Then you're in good company. I refuse to grow up!
@macrobody
@macrobody Жыл бұрын
Thanks, still using your SQLControl example. Guess I need to update my code now with stored procedures.
@BijuVarghese
@BijuVarghese Жыл бұрын
Also make vdo on How to make a ini file to paramaterize the connection string to connect sql server .
@BijuVarghese
@BijuVarghese Жыл бұрын
You are just awesome
@BijuVarghese
@BijuVarghese Жыл бұрын
Superrrrr. Pls continue making vdo in this series
@mrzaboor
@mrzaboor Жыл бұрын
Glad to hear you again