-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscical.vb
28 lines (23 loc) · 850 Bytes
/
scical.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.Width = 261
Me.Height = 421
txtDisplay.Width = 218
txtDisplay.Height = 59
Me.Text = "Standard Calculation"
End Sub
Private Sub ScientificToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles ScientificToolStripMenuItem.Click
Me.Width = 510
Me.Height = 416
txtDisplay.Width = 459
txtDisplay.Height = 59
Me.Text = "Scientific Calculator"
End Sub
Private Sub TemperatureToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles TemperatureToolStripMenuItem.Click
Me.Width = 847
Me.Height = 416
txtDisplay.Width = 459
txtDisplay.Height = 59
Me.Text = "Temperature"
End Sub
End Class