diff options
| author | Alex-TIMEHACK <[email protected]> | 2017-07-02 16:31:46 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-07-02 16:31:46 +0100 |
| commit | 3de51a2e1b9224e8a8355e3945e458e1651821a9 (patch) | |
| tree | ec0016f90351794301e8eda68e77fb9766f5f9fb /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs | |
| parent | 69ae842e6e3193a27b0294f92784ef97eb69fb37 (diff) | |
| parent | 99938de884fcf0dd572a330145dd91686268a45f (diff) | |
| download | histacom2-3de51a2e1b9224e8a8355e3945e458e1651821a9.tar.gz histacom2-3de51a2e1b9224e8a8355e3945e458e1651821a9.tar.bz2 histacom2-3de51a2e1b9224e8a8355e3945e458e1651821a9.zip | |
Merge pull request #108 from Alex-TIMEHACK/master
Made the Windows folder have SOMETHING in it
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs deleted file mode 100644 index 174c5b4..0000000 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs +++ /dev/null @@ -1,44 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; -using System.Data; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; -using System.Media; -using System.IO; -using System.Threading; -using System.Reflection; -using System.Linq.Expressions; - -namespace TimeHACK.OS.Win95.Win95Apps -{ - public partial class WinClassicTerminal : UserControl - { - public WinClassicTerminal() - { - InitializeComponent(); - } - /// <summary> - /// Write text to the Terminal and create a new line. Very similar to the Win32 Console.WriteLine Function. - /// </summary> - /// <param name="Text"></param> - public void WriteLine(string Text) - { - richTextBox1.AppendText(Text + "\n"); - richTextBox1.Update(); - } - - /// <summary> - /// Write text to the Terminal. Very similar to the Win32 Console.Write Function. - /// </summary> - /// <param name="Text"></param> - public void Write(String Text) - { - richTextBox1.AppendText(Text); - richTextBox1.Update(); - } - } -} |
