Artifact 82fc08b32ac096724aba4bd0f59967d2b417dc14:
- File testce/Form1.cs — part of check-in [9bc8258798] at 2006-01-10 18:38:02 on branch sourceforge — no message (user: rmsimpson size: 432)
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace test { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public void WriteLine(string str) { textBox1.Text += str + "\r\n"; } public void Write(string str) { textBox1.Text += str; } } }