Getting at Values on other Forms – Free VB .NET Tutorials for Beginners 14.5

Posted by NosaLee in .NET Programming on 04-06-2012. Tags: , ,

Back to Home Previous Course
This lesson follows on from the previous two lessons: How to create a second form
 
The form with OK and Cancel buttons on it is not doing much good. We need it do some work for us. Let’s turn the form into a Change Case dialogue box.
Design a Form like the on[......]

Read More…

Modal and Non Modal Forms – Free VB .NET Tutorials for Beginners 14.4

Posted by NosaLee in .NET Programming on 04-06-2012. Tags: , ,

Back to Home Previous Course Next Course
This lesson follows on from the previous short lesson: How to create a second form
 
A modal from is one that has to be dealt with before a user can continue. An example is the Change Case dialogue box in Microsoft Word. If you try to click away from the[......]

Read More…

Creating Multiple Forms – Free VB .NET Tutorials for Beginners 14.3

Posted by NosaLee in .NET Programming on 04-06-2012. Tags: , ,

Back to Home Previous Course Next Course
It’s a rare programme that only has one form in it. Most programmes will have other forms. These other forms can be used for things like Find and Replace searches, extra formatting capabilities, to set Options for the programme, and a whole lot more bes[......]

Read More…

Adding a Toolbar to a Form – Free VB .NET Tutorials for Beginners 14.2

Posted by NosaLee in .NET Programming on 04-06-2012. Tags: , ,

Back to Home Previous Course Next Course
The toolbar is a very popular and much-used addition to a programme. It’s difficult to think of a piece of software that doesn’t make use of them. VB.NET lets you add toolbars to your forms, and the process is quite straightforward. Let’s se[......]

Read More…

Anchor and Dock Controls on a Form – Free VB .NET Tutorials for Beginners 14.1

Posted by NosaLee in .NET Programming on 04-06-2012. Tags: , ,

Back to Home Previous Course Next Course
In this section of the course, we’ll take a look at some of the extra things you can do with VB.NET forms. First, we’ll take a look at the Anchor and Dock properties of a form.
 
Anchoring and Docking
The Anchor and Dock properties of a form [......]

Read More…

How to Delete a Record from Database – Free VB .NET Tutorials for Beginners 13.10

Posted by NosaLee in .NET Programming on 04-06-2012. Tags: , ,

Back to Home Previous Course Next Course
This lessons is part of an ongoing tutorial. The first part is here:
Coding your own VB .NET database projects

In the last part, you saw how to Add a new record to the database using VB .NET code. In this final part, you’ll learn how to delete records[......]

Read More…

How to Add a New Record – Free VB .NET Tutorials for Beginners 13.9

Posted by NosaLee in .NET Programming on 04-06-2012. Tags: , ,

Back to Home Previous Course Next Course
This lessons is part of an ongoing tutorial. The first part is here:
Coding your own VB .NET database projects

In the previous part, you learned how to Update records in the database. In the part, we’ll see how to add a new record to the database using[......]

Read More…

Add, Update and Delete Records – Free VB .NET Tutorials for Beginners 13.8

Posted by NosaLee in .NET Programming on 04-06-2012. Tags: , ,

Back to Home Previous Course Next Course
This lessons is part of an ongoing tutorial. The first part is here:
Coding your own VB .NET database projects

In the last section, you learned how to move through the records in your DataSet, and how to display the records in Textboxes on your form. In thi[......]

Read More…

How to Move through the Database – Free VB .NET Tutorials for Beginners 13.7

Posted by NosaLee in .NET Programming on 04-06-2012. Tags: , ,

Back to Home Previous Course Next Course
This lessons is part of an ongoing tutorial. The first part is here:
Coding your own VB .NET database projects

In the last lesson, you set up a Form with four buttons and two textboxes. You then added the following code:
In this lesson, you’ll add the[......]

Read More…

Navigate a Database – Free VB .NET Tutorials for Beginners 13.6

Posted by NosaLee in .NET Programming on 04-06-2012. Tags: , ,

Back to Home Previous Course Next Course
The first part of Databases and VB .NET can be found here:
Coding your own VB .NET database projects

You saw in the previous sectionthat you can navigate through the records of a database by incrementing or decrementing the Row number of the DataSet. In thi[......]

Read More…