How to create "Hello World" program in vb6
Hello folks, Today I am going to teach you vb6 (Visual Basic 6.0) programming. In this tutorial you will be learning "How to create "Hello World" program in vb6". As you guys already know vb6 is one of the most popular programming language in 2016. With this programming language you can create games, desktop application etc etc. But today I will not be teaching that kind of stuff. We will be creating simple application on vb6. So let's get started.
At first to create any application you need to download and install IDE for vb6 into your computer. You can download VB IDE from here. After you successfully download and install it into your computer, open vb6 and your first screen will look like this.
Here Form1 is your form. Now Click on Command button and bring it into your form. Click and drag your mouse to give height and width of that command button. Here's the image.
Now double click on that command button and write this code.
msgbox "Hello World"
This will display Hello World message when user click that command button. You can see this code in this screen shot. To run this program you should click on Run Icon in menu bar. It looks like play button.
So guys you have learned how to create vb6 application that can show message box in your screen. Thank you for visiting my site. You can leave comment if you have any question or any request to make.
Thank You!!!!