Welcome Users. This site is help for informations on Computers programmings. Post your problems or project in the Project Here page.

In this site you can see the Tutorial for

~ Creating Database Applications in Visual Basic.

~ Creating a Multi media Player in Visual Basic.

~ Creating a photo viewer in Visual Basic.

FEW WORDS ABOUT VB:

Visual basic simply said as it is a Component Based Programmings. Very interesting programming. You can program your project you alone. There is no need for teaching. Just see a book reference and online website references, you can move to Visual basic.

Where can you go for additional Visual Basic support? You can find Visual Basic
user groups all over, and more are appearing every day. You can also find Visual
Basic information (and advertising) at the Microsoft Visual Basic home page at www.microsoft.com/vbasic/

To Free Download http://www.microsoft.com/vbasic/download/ and technical documents (white papers) at http://www.microsoft.com/vbasic/techmat/

For Reference book on Visual Basic check here

(i) VB Book more than 1000 pages

(ii) Basics On Visual Basic

Everyone wondering on Visual Studio Teams. They are,

GOOD TEAMS ROW.

GREAT TEAMS ROW TOGETHER.

AND WIN.

Visual Studio 2008 helps you to build quality in from the starting line, manage code from multiple sources, and keep your code base and Database in line.

Free Trial at microsoft.com/india/visualstudio/

Visual Basic is a product of Visual Studio. You can code your programs with references alone. I posted some projects tutorial at VB Tutorial.

Visual Basics Projects are very easy to do. I highly recommend that Computer people should practice at Visual Basics. And you can get help on Visual Basic from online MSDN.

Let look at simple concepts on Visual Basic.

First goto the Visual Basic by Start->All Programs->Microsoft Visual Studio-> Microsoft Visual Basic.

In that it asks for what type of project you’re goin’ to do. Select Standard EXE projects. We’re going to attention on EXE Projects. A form’ll be opened for designing. Now we are going to look at the Components of Visual Basics. Its many but we’re going to see the Basics.

Thats the components box. Inthat, the first is Pinter to change your operation to Mouse Pointer.

PICTURE BOX:
2nd Picture Box. That can be used to place Pictures. Picture having some properties like AutoRedraw, Picture, Height, Width etc.

Now we’re going to see add a picture in a picture box.

Add a Picture box from your components, its name is Picture1. Then double click on the Form, and place the code for FormLoad

Private Sub Form_Load()
Picture1.AutoRedraw = True
Picture1.PaintPicture LoadPicture(“D:/1.jpg”), 0, 0, Picture1.Width, Picture1.Height
End Sub

LABEL:

Labels are used to show some informations on the procedures. Important properties here are BackStyle which can be Opaque( which held color which we gave) or Transparent.

Insert a Command Button and double click on that in that type this code

Private Sub Command1_Click()
Label1.Caption = “RAYS”
End Sub

COMBO BOX:

Combo boxes you may see at the address bars, in that to Add an text the procedure is additem to clear the function is clear. Let see with example. Put 2 command Buttons ad move to the code

Private Sub Command1_Click()
Combo1.AddItem (“POP”)
End Sub

Private Sub Command2_Click()
Combo1.clear
End Sub

LISTBOX:

List box is also like the ComboBox try the same codes.

DRIVELIST:

Drive list box shows your all Local drives and Removable drives.

DIRECTORYLIST:

Directory List Box shows all the Directories (Folders) Which is tagged to its Drive Paths.

FILELIST:

File List box shows all the Files which is directed from Directory list box.

DATA:

Data Control is used for Database application developments.

Advertisement