diff options
| author | EverythingWindows <[email protected]> | 2022-11-13 21:22:42 +0700 |
|---|---|---|
| committer | EverythingWindows <[email protected]> | 2022-11-13 21:22:42 +0700 |
| commit | f3d11527bd83ae40616582d2116891e9d08831ae (patch) | |
| tree | 06cab73465261d2d4e0858509b7599ad8fb5889c /ShiftOS-TheRevival/MainForms/ConsoleAPI.vb | |
| parent | 54355f9686a5a07f27de5cd3444b87509df2fd2f (diff) | |
| download | shiftos-therevival-old-f3d11527bd83ae40616582d2116891e9d08831ae.tar.gz shiftos-therevival-old-f3d11527bd83ae40616582d2116891e9d08831ae.tar.bz2 shiftos-therevival-old-f3d11527bd83ae40616582d2116891e9d08831ae.zip | |
More NewLine migration, Epilepsy warning fixing, and fixing update system
Diffstat (limited to 'ShiftOS-TheRevival/MainForms/ConsoleAPI.vb')
| -rw-r--r-- | ShiftOS-TheRevival/MainForms/ConsoleAPI.vb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/MainForms/ConsoleAPI.vb b/ShiftOS-TheRevival/MainForms/ConsoleAPI.vb index 28b7efc..155173e 100644 --- a/ShiftOS-TheRevival/MainForms/ConsoleAPI.vb +++ b/ShiftOS-TheRevival/MainForms/ConsoleAPI.vb @@ -15,4 +15,10 @@ Console.TextBox1.Select(Console.TextBox1.Text.Length, 0) Console.TextBox1.ScrollToCaret() End Sub + + Public Sub TextRebindBehind() + 'Console.TextBox1.Select(Console.TextBox1.Lines.Length - 1, 0) + Console.TextBox1.Select(Console.TextBox1.Lines.Length - 1, 0) + Console.TextBox1.ScrollToCaret() + End Sub End Module |
