visual basic

Print the Text in a Textbox Part II..(Page Setup and Print Dialog)

Submitted by janobe on
This is the continuation of my previous tutorial which is the Print the Text in a Textbox. This time, I’m going to add the Page Setup and Print Dialog. In the Page Setup you can choose any setup that you wanted in your page and it contains selections such as the margin,sizes and etc.. While in the Print Dialog you can select the number of pages and copies that you want to print.

How to Print the Text in a Textbox

Submitted by janobe on
This time, I’m going to teach you how to print the text in a Textbox in Visual Basic 2008. This will allow you to preview and print any message that you type in a TextBox. It depends on you, on how long your message will because it will automatically set on the next page. So, lets get started : Open Visual Basic 2008, create a new Window Application and do the Form just like this.

Drag/Drop and Copy Control in Visual Basic 2008

Submitted by janobe on
In this tutorial I will teach you how to create Drag/Drop and Copy Control using Visual Basic 2008. With this, you can drag and drop the picture that’s inside the Picture box and you can also copy it to another Picture Box by pressing the Ctrl key control. Let's begin: Open Visual Basic 2008, create a new Windows Application and drag the two PictureBoxes in the Form.

Search a String in A TextBox and Highlight in VB6

Submitted by donbermoy on
This tutorial provides to create a program that has the capability of finding a string in a textbox and highlight it using Visual Basic 6.0. Now, let's start this tutorial! 1. Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2. Next, add only one Button named Command1 and labeled it as "Find a String". Add also one TextBox named TextBox1 for inputting any text on it.

MAJ Microfinance Corporation Loan Collection System

Submitted by donbermoy on
MAJ Microfinance Corporation Loan Collection System is a complete loan collection system that was developed through Visual Basic 6.0 and MS Access 2003 Database. This system was one of the thesis I made for a particular school. This system features: - Client/Borrower Registration - New Member and Old Member Loan Application - Monthly Loan Payment - List of Payments - Interest Settings for

Rolling Numbers Game in Visual Basic 2008

Submitted by janobe on
This time I will teach you how to create Rolling Numbers Game in Visual Basic 2008. In these features the numbers are rolled randomly and it has a Progress Bar that serves as a timer. Let's begin: Open the Visual Basic 2008, create a Windows Application and do the Form just like this. first form Double click the Timer and do the following code. The event is, everytime the timer ticks, the numbers in the Textbox will randomly roll.

How to Get the X/Y Point of a Textbox Using For Each Loop

Submitted by janobe on
In this tutorial I will teach you how to get X/Y Point of a Textbox Using For Each Loop in Visual Basic 2008. With this you can easily get the location of a specific Textbox. I used the Foreach Loop so that you don’t have to specify what is the name of your Textbox. All you have to do, is to get the type of it. Let’s begin. Open Visual Basic 2008, create a new Windows Application, drag the Textbox and Button you needed.