diff options
| author | EverythingWindows <[email protected]> | 2022-11-14 12:11:31 +0700 |
|---|---|---|
| committer | EverythingWindows <[email protected]> | 2022-11-14 12:11:31 +0700 |
| commit | b37a6e60c9ffa266fc1fc9afc13cada7704100b0 (patch) | |
| tree | d84b68938f5b983bf9f0e3d0557ec307a636b961 /ShiftOS-TheRevival/MainForms/TerminalExternalApps.vb | |
| parent | 5fe61b8fe47c536ab6f1bf35200a9c253e7d9f2f (diff) | |
| download | shiftos-therevival-old-b37a6e60c9ffa266fc1fc9afc13cada7704100b0.tar.gz shiftos-therevival-old-b37a6e60c9ffa266fc1fc9afc13cada7704100b0.tar.bz2 shiftos-therevival-old-b37a6e60c9ffa266fc1fc9afc13cada7704100b0.zip | |
moving more from Console to Terminal Internal/External Apps
Diffstat (limited to 'ShiftOS-TheRevival/MainForms/TerminalExternalApps.vb')
| -rw-r--r-- | ShiftOS-TheRevival/MainForms/TerminalExternalApps.vb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ShiftOS-TheRevival/MainForms/TerminalExternalApps.vb b/ShiftOS-TheRevival/MainForms/TerminalExternalApps.vb index a489c54..20188ed 100644 --- a/ShiftOS-TheRevival/MainForms/TerminalExternalApps.vb +++ b/ShiftOS-TheRevival/MainForms/TerminalExternalApps.vb @@ -205,7 +205,7 @@ Module TerminalExternalApps Select Case GetText Case "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" BC_CurrentNumber = BC_CurrentNumber & GetText - Case "+", "-", "*", "/" + Case "+", "-", "*", "/", "^" Dim BC_Numbers3 As Integer Select Case BC_ThriceMoreValue Case 1 @@ -224,7 +224,7 @@ Module TerminalExternalApps End Select BC_Operation2 = GetText Case "." - Console.TextBox1.Text = Console.TextBox1.Text & "Decimals aren't supported yet!" + NewLine("Decimals aren't supported yet!") Case Else 'BC_Counting(BC_Numbers1, BC_Numbers2, BC_Operation2) End Select @@ -251,6 +251,8 @@ Module TerminalExternalApps BC_Result = FirstNum * SecondNum Case "/" BC_Result = FirstNum / SecondNum + Case "^" + BC_Result = FirstNum ^ SecondNum End Select End Sub |
