diff options
| author | EverythingWindows <[email protected]> | 2022-11-19 07:25:02 +0700 |
|---|---|---|
| committer | EverythingWindows <[email protected]> | 2022-11-19 07:25:02 +0700 |
| commit | eb41e07992fa2cb51194a0d4327a494f66b87b9b (patch) | |
| tree | 478517af232619faafb8e09d11041ed1c778cac6 /ShiftOS-TheRevival/API/ConsoleAPI.vb | |
| parent | 1d1722345b99abe7f52e999994ccb3e088cbd3c2 (diff) | |
| download | shiftos-therevival-old-eb41e07992fa2cb51194a0d4327a494f66b87b9b.tar.gz shiftos-therevival-old-eb41e07992fa2cb51194a0d4327a494f66b87b9b.tar.bz2 shiftos-therevival-old-eb41e07992fa2cb51194a0d4327a494f66b87b9b.zip | |
completing any migration from TerminalExternalApps into its own module
Diffstat (limited to 'ShiftOS-TheRevival/API/ConsoleAPI.vb')
| -rw-r--r-- | ShiftOS-TheRevival/API/ConsoleAPI.vb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/API/ConsoleAPI.vb b/ShiftOS-TheRevival/API/ConsoleAPI.vb index c7b83d8..adb0d6f 100644 --- a/ShiftOS-TheRevival/API/ConsoleAPI.vb +++ b/ShiftOS-TheRevival/API/ConsoleAPI.vb @@ -9,6 +9,13 @@ Console.WindowState = FormWindowState.Maximized End Sub + Public Sub Console_Interpreters() + If Console.ShouldChange = True Then + Console.ChangeInterpreter = True + Console.ShouldChange = False + End If + End Sub + Public Sub NewLine(str As String) Console.TextBox1.Text = Console.TextBox1.Text & Environment.NewLine & str End Sub |
