Over the years I have written several programs the rely on radio buttons for some function or another. The first time that I worked with radio buttons the project had several of them in one group box. After clicking on each one and having ten events to fill with code I thought that there has to be a better way and asked myself, “I wonder if I can have one event handle several Radio Button Checked Changed events.”
Database Tutorial Source Code
Posted: 22nd December 2013 by Mike Trent in Blog, Computer, Databases, Programming, Science, Technology, VB.NetTags: Blog, Code, Database, Hack, Insert Data, Programming, Quick Tip, Tutorial, Vb.Net, VS2008
Database Tutorial Source Code :
As promised, here is my complete code for the data base tutorial. This represents a cleaned up and tested version, so I hope it is helpful to those learning database programming. Enjoy.
VB.NET Quick Tip – How To Reverse Scroll Bar Functionality
Posted: 18th December 2013 by Mike Trent in Blog, Computer, Hack, Programming, Quick Tip, Technology, VB.NetTags: Blog, Code, Hack, Insert Data, Programming, Quick Tip, Vb.Net, VS2008
I had to post this quick tip because I have seen so many drawn out explanations and overly complicated code to resolve this problem, (people think too much.) Visual Studio has Scroll Bars in the Tool Box. The Problem: What is left out of the properties is the ability to reverse the direction of the action, meaning the value change direction.
VB.Net And Databases, How To Search A Table Within A Database
Posted: 11th December 2013 by Mike Trent in Blog, Computer, Databases, Programming, VB.NetTags: Code, Databases, Hack, Insert Data, Programming, Tutorial, Vb.Net, VS2008
This is the fifth installment of working with databases in VB.Net using Visual Studio 2008. In previous edition we filled a data grid with a table from our database. Also, we learned how to write data to the table and how to clear the table. In this edition we will write code that will allow us to search the table for data matching an entry in a search box and to delete that data from the table. We will also optimize our program by eliminating some unneeded steps.