Simple Caculator
Submitted by hebamm on Thursday, October 26, 2017 - 20:12.
Language
This is a very simple calculator that allows you to calculate addition, subtraction, multiplication, and division.
- Public Class Form1
- Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
- If (TextBox1.Text = " ") Then
- MessageBox.Show("enter value in num1")
- End If
- If (TextBox2.Text = " ") Then
- MessageBox.Show("enter value in num2")
- Else
- End If
- End Sub
- Private Sub TextBox3_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox3.TextChanged
- End Sub
- Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
- If (TextBox1.Text = " ") Then
- MessageBox.Show("enter value in num1")
- End If
- If (TextBox2.Text = " ") Then
- MessageBox.Show("enter value in num2")
- Else
- End If
- End Sub
- Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
- TextBox1.Text = " "
- TextBox2.Text = " " 'clear button to clear all numbers.
- TextBox3.Text = " "
- End Sub
- Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
- Form2.Show() 'show exit form.
- End Sub
- Private Sub abstract_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles abstract.Click
- If (TextBox1.Text = " ") Then
- MessageBox.Show("enter value in num1")
- End If
- If (TextBox2.Text = " ") Then
- MessageBox.Show("enter value in num2")
- Else
- End If
- End Sub
- Private Sub division_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles division.Click
- If (TextBox1.Text = " ") Then
- MessageBox.Show("enter value in num1")
- End If
- If (TextBox2.Text = " ") Then
- MessageBox.Show("enter value in num2")
- Else
- End If
- End Sub
- Private Sub TextBox4_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
- End Sub
- End Class
- Public Class Form2
- Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
- End Sub
- Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
- End Sub
- Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
- End Sub
- End Class
Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
Add new comment
- 117 views