What's new

Closed Microsoft Visual Basic 6

Status
Not open for further replies.
Good day!

Hi!
Magtatanong lang po sana ako kung "Visual Studio 6.0" po ba talaga ang need kong i-download dahil component lang nito ang Visual Basic 6.0 para mainstall ko ang VB6.0?
O may nag-eexist na solo installer for VB6.0 lang? (Not portable at hindi kasama yung Visual C++, FoxPro, etc.)

2x to 3x na po kasi akong nagdownload. Ang filename eh "Visual Basic 6.0",, pero pag-open, Visual Studio naman.
Ignore no na lang po sana kung bakit luma ang hanap ko. :) Confrmation lang ang need ko.
Pero kung may maipo-provide po kayong solo VB6.0 Installer (not portable) kung meron man, ay ikagagalak ko po. :)

Maraming salamat!
 
Last edited:
Good day!

Hi!
Magtatanong lang po sana ako kung "Visual Studio 6.0" po ba talaga ang need kong i-download dahil component lang nito ang Visual Basic 6.0 para mainstall ko ang VB6.0?
O may nag-eexist na solo installer for VB6.0 lang? (Not portable at hindi kasama yung Visual C++, FoxPro, etc.)

2x to 3x na po kasi akong nagdownload. Ang filename eh "Visual Basic 6.0",, pero pag-open, Visual Studio naman.
Ignore no na lang po sana kung bakit luma ang hanap ko. :) Confrmation lang ang need ko.
Pero kung may maipo-provide po kayong solo VB6.0 Installer (not portable) kung meron man, ay ikagagalak ko po. :)

Maraming salamat!

pagkakaalam ko walang bukod na visual basic 6.0. visual studio 6.0 lang talaga ang meron. anu pong prob don bat ayaw mo ng visual studio?
 
pagkakaalam ko walang bukod na visual basic 6.0. visual studio 6.0 lang talaga ang meron. anu pong prob don bat ayaw mo ng visual studio?

Ok, salamat po sa pagconfirm!
qqbnm.gif

Wala naman pong problem, pero mas prefer ko lang yung solo installer ng VB6.0 kung sakali mang meron kaysa magdownload ng whole package na yun lang naman ang need ko.
Pero since wala kamo, sakto na din pala yung nai-download ko.
soldier_baby.gif

Salamat ulit!
 
Good day!

Hi!
Magtatanong lang po sana ako kung "Visual Studio 6.0" po ba talaga ang need kong i-download dahil component lang nito ang Visual Basic 6.0 para mainstall ko ang VB6.0?
O may nag-eexist na solo installer for VB6.0 lang? (Not portable at hindi kasama yung Visual C++, FoxPro, etc.)

2x to 3x na po kasi akong nagdownload. Ang filename eh "Visual Basic 6.0",, pero pag-open, Visual Studio naman.
Ignore no na lang po sana kung bakit luma ang hanap ko. :) Confrmation lang ang need ko.
Pero kung may maipo-provide po kayong solo VB6.0 Installer (not portable) kung meron man, ay ikagagalak ko po. :)

Maraming salamat!

Kung need mo lang naman ng components ng VB6 to run an existing VB6 application , pede mo nang i download yung You do not have permission to view the full content of this post. Log in or register now.
runtime files ,

But if mag program ka, need mo talaga ang VISUAL STUDIO , madami nang available sa internet ngayon kahit wala kang cdkey puro 111-11111 input mo gagana siya, kahit wala na ring MSDN dahil me MSDN Online naman,
 
Kung need mo lang naman ng components ng VB6 to run an existing VB6 application , pede mo nang i download yung You do not have permission to view the full content of this post. Log in or register now.
runtime files ,

But if mag program ka, need mo talaga ang VISUAL STUDIO , madami nang available sa internet ngayon kahit wala kang cdkey puro 111-11111 input mo gagana siya, kahit wala na ring MSDN dahil me MSDN Online naman,

Salamat po sa response.
Pero ok na po pala ito, may nakapagprovide po sa akin ng installer lang ng vb6.0 na walang c++, foxpro, etc. :)
 
Salamat po sa response.
Pero ok na po pala ito, may nakapagprovide po sa akin ng installer lang ng vb6.0 na walang c++, foxpro, etc. :)

nice to hear that, but I suggest kung me time ka , mag upgrade ka na lang din sa latest .NET , unless need talagang legacy system yang pagaganahin mo,
 
sir pa help naman po about vb6 din kasi gumawa kami nung may add,search,update,delete ok na lahat aside from update kasi pag nag update ako ng isang query like age eh napapalitan lahat ng ages din ng ibang id ano po dapat ko gawin? TIAA ts great thread GBU
 
Beginner Tutorial - Hello World
Level:

Level1.gif

Visual Basic is a great starter programming language. Not only is it easy to learn, but many business applications use it extensively for their applications. If you are just starting to learn to develop applications - this is a great language to start with. This tutorial and the many other Visual Basic tutorials at this site will give you a solid foundation in your Visual Basic knowledge.

Lets jump right in with a simple application. When you are done with this Visual Basic tutorial, you should have a complete working application that when you click on the button it will say "Hello, World"

Start Microsoft Visual Basic 6.0 (VB6)

The New Project dialog box will appear. If it doesn't go up to the menu bar and select File -> New Project

Visual-Basic-Tutorial-Screen1.jpg

In the New Project dialog select Standard EXE, and click the Open Button.

This will bring up your new Project 1 application with Form1 visible.

Already Visual Basic has done a lot for us. As you can see this tutorial isn't very long but already you have a full working application. You can see your new program in action by going up to the menu bar and selecting Run -> Start (Or simply press the F5 key).

You should see the Form1 window appear:

Visual-Basic-Tutorial-Screen2.jpg

This is a fully functional application. You can move it around, minimize and maximize it, and close it down. For you to do this same thing in C++ - the original language most of Windows was written in you would have written hundreds of lines of code. You area already getting to see some of the extreme power VB gives you. Now lets continue with the tutorial.

Lets make this program say hello!

Visual-Basic-Tutorial-screen3.jpg

On the left side of the screen you can see the toolbox (if this doesn't show up go to the top menu bar and select View -> Toolbox). In this toolbox you will see a picture of a button. Double click the button icon and it will create a Command1 CommandButton in the center of your form.

Visual-Basic-Tutorial-screen4.jpg

If you run the program now (Press F5) you will see your window now has a button labeled Command1 in the center of it, but if you click the button it doesn't do anything. So lets wire things up so our program will say "Hello, World" when you click the button. Close out of your running program so you are back to the main design environment (pictured above)

Visual Basic allows you to do event driven programming. This is a concept that is very powerful and easy to use. Event driven programming works as follows: Visual Basic has many different events defined that occur when a specified thing happens. We as the programmer can link into these events and write our custom code to do what we want. One very useful event is the Click event. This event occurs any time the user clicks on the specified object. I'm sure the wheels are already turning in your head, if we want to say hello world when someone clicks the button on our form than we should do something in the Click event for the Command1 button. That is exactly what we are going to do.

To write the click event code double click on the Command1 button. This will bring up the code editor and will automatically write the beginning code to handle the click event.

Visual-Basic-Tutorial-screen5.jpg

Now any code you put between the Private Sub and the End Sub statements will be executed when the user clicks the command button. To demonstrate this we will have a message box appear saying hello world. So add this line of code:

Private Sub Command1_Click()
MsgBox "Hello, World!"
End Sub

MsgBox is a built in Visual Basic function that causes a message box to be displayed to the user. The first parameter this function takes is the text string you wish to have displayed. We choose the text string "Hello, World!". MsgBox also takes other parameters to specify things such as what buttons to display and what caption to use, but these will be discussed later. For now lets see how this works. Run your newly created Visual Basic hello world program (Press F5). Once the program is running click the Command1 button, you should see a message box saying Hello, World! appear.

Visual-Basic-Tutorial-screen6.jpg

Congratulations! You have written a complete working Visual Basic program using this Hello, World tutorial. Read some of our other VB6 tutorials to learn how powerful this language really is.

Reference: You do not have permission to view the full content of this post. Log in or register now.
Hello sir, baka alam nyo po ung code , student profile system po sana.. Visual basic po .. Sana po matulungan nyo ako.
 

Attachments

Walang anuman :)

sir yus patulong naman Yong language ko is visual basic 6.0 ganito po kasi ang gusto Kong mangyare sa system although finish na e gsto ko sana palitan Yong code for print. pag e click Yong command na print lahat ng nasa txtboxes e mapuputa sa ms word.
 
Status
Not open for further replies.

Similar threads

Back
Top