initial checkin

This commit is contained in:
chudov
2008-10-13 19:25:11 +00:00
parent 2e379c72e2
commit 36757fca7a
937 changed files with 184964 additions and 0 deletions

21
CUETools/frmReport.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace JDP
{
public partial class frmReport : Form
{
public frmReport()
{
InitializeComponent();
}
public string Message {
get { return textBox1.Text; }
set { textBox1.Text = value; }
}
}
}