learning vb - mkasoft 001.pdf · learning vb.net hello everyone… welcome to vb.net tutorials....

27
http://www.mka-soft.com 1 Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple applications, hope you enjoy it. If you have any notes about it, please send them to [email protected] I will be happy to receive them. Finally if you find these tutorials are useful, it would be nice from you to send a small donation via PayPal to [email protected] . The work with this tutorial started on 2009-JAN-04.

Upload: dinhdat

Post on 01-Sep-2018

226 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

1

Learning VB.Net

Hello everyone… welcome to vb.net tutorials. These are going to

be very basic tutorials about using the language to create simple

applications, hope you enjoy it. If you have any notes about it,

please send them to [email protected] I will be happy to

receive them. Finally if you find these tutorials are useful, it would

be nice from you to send a small donation via PayPal to

[email protected].

The work with this tutorial started on 2009-JAN-04.

Page 2: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

2

Scrool down and select offine install. You need to burn this ISO image into a disk before using

it… or you can select web install for Visual Basic .net…

Page 3: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

3

Select Visual Basic 2008 from the list…

Page 4: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

4

The installation appears after a few seconds

Page 5: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

5

Wait for a while

Page 6: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

6

Click next…

Page 7: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

7

Read the agreement and agree about it… then click next…

Page 8: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

8

Select the MSDN (the help library) and Silver Light then click next…

Page 9: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

9

Click next…

Page 10: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

10

The installation starts…

Page 11: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

11

After a while a restart will be required… click restart now…

Page 12: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

12

Do not press or do anything… the installation continues automatically…

Page 13: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

13

After the installation finishes, press exit… now let us test the VB.Net and write a simple

application.

Page 14: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

14

Go to All Programs->Microsoft Visual Basic 2008…

Page 15: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

15

VB will start…

Page 16: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

16

This is only a quick test… the next lessons explains what happens in detail… so for now this is the

IDE (Integrated Development Environment) that you build your applications with…

Page 17: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

17

Select File->New Project

Page 18: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

18

Select Windows Forms, and give a name to your first application, then press OK.

Page 19: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

19

Your application contains one window… you can modify it visually without doing any

programming…

Page 20: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

20

Put the mouse pointer over the small square on the corner, and drag the window’s corner and

see what happens … you are resizing the window very easily…

Page 21: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

21

To test this window, you hit the play button… the play button runs your application, to stop the

application hit the stop button or close the application window…

Page 22: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

22

You can test the window and see it behaves like many XP forms or Vista forms…

Page 23: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

23

Now stop the application and search for Back color property from the list on the right…

Page 24: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

24

Press the small arrow that appears, and select General as shown In the image above… then

select a color that you like.

Page 25: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

25

Now search for the Text property and replace its value with anything you like …

Page 26: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

26

Run the application…

Page 27: Learning VB - mkasoft 001.pdf · Learning VB.Net Hello everyone… welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

http://www.mka-soft.com

27

Very easy… still one last thing… you should save the application. Just Hit the Save all icon from

the tool bar…and select save…

The next tutorial explains in detail how to deal with the IDE…