banner



How To Create A Calculator In Visual Basic

Download Article

Download Article

This wikiHow teaches you how to use Microsoft's Visual Basic 6.0 to create a simple calculator that can add, subtract, multiply, and divide. Keep in mind that Visual Basic 6.0 is no longer used by modern computers, so you'll need to have it installed and running on your computer in order to be able to use it.

  1. 1

    Create a new folder for your calculator. To house all of your calculator's necessary files, do the following:

    • Go to the location in which you want to save your VB6 calculator.
    • Right-click a blank space.
    • Select New in the drop-down menu.
    • Click Folder.
    • Type in Calculator and press Enter .
  2. 2

    Open Visual Basic 6. This will bring up the project selection page.

    Advertisement

  3. 3

    Click Standard EXE . It's in the project selection field.

  4. 4

    Click Open . This is in the bottom-right corner of the window. Doing so creates a new project.

    Advertisement

  1. 1

    Open the "Text Box" tool. Click the ab button on the left-hand side of the window.

  2. 2

    Create a text box. Click and drag your mouse down and right to draw an outline of the text box, then release the mouse button when the text box is the proper size.

    • Ideally, your text box will be significantly longer than it is tall.
  3. 3

    Copy the text box. Click once the text box to select it, then press Ctrl+C to copy it.

  4. 4

    Paste in the text box twice. Press Ctrl+V twice to do so. You should see your pasted text boxes appear in the upper-right side of the page.

    • If prompted to create a new control array after pasting in a text box, click No.
  5. 5

    Arrange the text boxes in a stack. Click and drag the text box in the top-left side of the page down to the bottom slot, then move the second text box from the top-left side of the page into the middle slot. You should now have a stack of three text boxes.[1]

    • The order in which you do this is important; if you place the text box you pasted second in the middle, it will cause your coding later to malfunction.
  6. 6

    Remove the text boxes' default text. To do so:

    • Click a text box.
    • Click the text field to the right of the "Text" heading in the "Properties" pane on the right side of the window.
    • Press Delete .
    • Repeat with the other two text boxes.
  7. 7

    Create three label boxes. Click the A button in the left-hand toolbar, then do the following:

    • Resize the label box to your preferred size.
    • Select the label box, then copy it.
    • Paste twice the label box.
  8. 8

    Place the label boxes to the left of the text boxes. Click and drag each label box to sit to the left of each text box.

  9. 9

    Edit the top label box's caption. To do so:

    • Click the top label box.
    • Click the text box to the right of the "Caption" heading in the "Properties" pane on the right side of the window.
    • Type in Number 1.
  10. 10

    Edit the other two label boxes' captions. You'll label them like so:

    • Click the middle label box, then change its caption to Number 2.
    • Click the bottom label box, then change its caption to Result.
  11. 11

    Make the label boxes transparent. This isn't necessary, but it will make your calculator more visually appealing:

    • Select a label box.
    • Click the "BackStyle" drop-down box in the "Properties" pane.
    • Click Transparent in the drop-down menu.
  12. 12

    Title your calculator. To change the text that appears at the top of the calculator's window when you run it, do the following:

    • Click a blank space on the form.
    • Click the "Caption" header's text box in the "Properties" pane.
    • Type in Simple Calculator (or whatever you want to name the calculator).

    Advertisement

  1. 1

    Click the "Button" tool icon. It's a grey box icon below the ab option in the left-hand toolbar.

  2. 2

    Create a square button. Click and drag in a diagonal direction until you see a small square outline appear, then release the mouse button. You should see a grey button display on the form.

  3. 3

    Copy the button. Select the button you just created, then press Ctrl+C .

  4. 4

    Paste the button three times. Press Ctrl+V three times to do so. This will create a total of four buttons on your project.

    • You may have to click No when prompted each time after pressing Ctrl+V .
  5. 5

    Arrange the buttons below the calculator's input fields. Click and drag each button so that you have a row of them below the "Result" text box.

  6. 6

    Edit the buttons' captions. You'll do this by changing the text for each button's "Caption" heading in the "Properties" pane on the right side of the window:

    • Click the left-most button, then change its "Caption" text to +.
    • Click the next button to the right, then change its "Caption" text to -.
    • Click the next button to the right, then change its "Caption" text to x (or *).
    • Click the right-most button, then change its "Caption" text to /.

    Advertisement

  1. 1

    Double-click the + button. Doing so opens a code console.

  2. 2

    Enter the addition code. Type the following code into the console, directly below the "Private Sub" text and directly above the "End Sub" text.

                                                Text3                      .                      Text                      =                      val                      (                      Text1                      )                      +                      val                      (                      Text2                      )                    
  3. 3

    Return to the calculator form. Double-click the Form1 option under the "Project1" heading on the right side of the page to do so.

  4. 4

    Double-click the - button. This will re-open the console.

  5. 5

    Enter the subtraction code. Type the following into the console:

                                                Text3                      .                      Text                      =                      val                      (                      Text1                      )                      -                      val                      (                      Text2                      )                    
  6. 6

    Double-click the x or * button. This will re-open the console.

  7. 7

    Enter the multiplication code. Type the following into the console:

                                                Text3                      .                      Text                      =                      val                      (                      Text1                      )                      *                      val                      (                      Text2                      )                    
  8. 8

    Double-click the / button. This will re-open the console.

  9. 9

    Enter the division code. Type the following into the console:

                                                Text3                      .                      Text                      =                      val                      (                      Text1                      )                      /                      val                      (                      Text2                      )                    

    Advertisement

  1. 1

    Save your project. Do the following:

    • Press Ctrl+S .
    • Select your "Calculator" folder as the save location.
    • Click Save.
  2. 2

    Click File . It's in the upper-left side of the window. A drop-down menu will appear.

  3. 3

    Click Make [name] exe… . This option is in the drop-down menu. Doing so re-opens the "Save As" window.

  4. 4

    Enter a file name. Type "calculator" or something similar into the "File name" text box.

  5. 5

    Select your "Calculator" folder. Go to the folder in which you saved your "Calculator" folder, then click the "Calculator" folder to select it.

  6. 6

    Click OK . It's in the bottom-right corner of the window. This will save your calculator as an executable (EXE) file in the "Calculator" folder.

  7. 7

    Create a shortcut to your calculator's EXE file. You can create a desktop shortcut to your calculator's EXE file by doing the following:

    • Open the "Calculator" folder.
    • Right-click the EXE file.
    • Select Send to in the drop-down menu.
    • Click Desktop (create shortcut).

    Advertisement

Add New Question

  • Question

    How do I code a calculator in VB?

    Community Answer

    Start by designing the interface of your calculator, then you start your coding by declaring the values you are using, such as a,b,c, for each command you have open in your interface. a=val(Text1.Text) b=val(Text2.Text) c=a+b Text3.Text=c a= the value you enter in text1(text box) b= the value you enter in text2(text box) c= the label to display your answer

  • Question

    How can I become an expert in programming?

    Community Answer

    Practice as much as possible and always challenge yourself to learn more and more complex things.

  • Question

    Any number divide by 0 is = 1? How I can fix that?

    Community Answer

    You might want to code in an error message because officially, dividing by 0 is UNDEFINED.

  • Question

    How do I add an About button?

    Community Answer

    Add a button to your form and write the following into the code of the button: messagebox("Title", "This program is by X and it's best for Y...", MSBoxStyle.Information).

  • Question

    How do I add username and password fields?

    Community Answer

    If you want to create a User login add two textboxes and one button. Set PasswordChar to '*' in one textbox and code the button to compare both textboxes to the right username.

Ask a Question

200 characters left

Include your email address to get a message when this question is answered.

Submit

Advertisement

  • You can change your calculator's background color by clicking a blank space on the form, clicking the "BackColor" drop-down box (in the "Properties" pane), and clicking the color you want to use.

Thanks for submitting a tip for review!

Advertisement

  • Visual Basic 6.0 is no longer updated on modern computers, so you may encounter errors if attempting to install or use it on a 64-bit system (e.g., Windows 10).

Advertisement

About This Article

Thanks to all authors for creating a page that has been read 743,067 times.

Is this article up to date?

How To Create A Calculator In Visual Basic

Source: https://www.wikihow.com/Create-a-Simple-Calculator-in-Visual-Basic-6.0

Posted by: ozunaparch2000.blogspot.com

0 Response to "How To Create A Calculator In Visual Basic"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel