using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Tester { public partial class ResultForm : Form { public ResultForm(string str) { InitializeComponent(); txtResult.Text = str; } private void btnClose_Click(object sender, EventArgs e) { this.Close(); } } }