I've done a search several times and nowhere is there any reference to the
old name...I was pretty thorough when I went through and changed the name,
but still nothing...here's the class nonetheless.
public class frmScreening : System.Windows.Forms.Form
{
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnDone;
private System.Windows.Forms.Button btnGender;
private System.Windows.Forms.Button btnSite;
private System.Windows.Forms.Label label1;
public frmScreening()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.btnGender = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.btnSite = new System.Windows.Forms.Button();
this.btnDone = new System.Windows.Forms.Button();
//
// btnGender
//
this.btnGender.Font = new System.Drawing.Font("Tahoma", 9F,
System.Drawing.FontStyle.Regular);
this.btnGender.Location = new System.Drawing.Point(50, 118);
this.btnGender.Size = new System.Drawing.Size(140, 24);
this.btnGender.Text = "Gender and Age";
//
// label2
//
this.label2.Font = new System.Drawing.Font("Tahoma", 9F,
System.Drawing.FontStyle.Regular);
this.label2.Location = new System.Drawing.Point(8, 32);
this.label2.Size = new System.Drawing.Size(232, 32);
this.label2.Text = "Tap one of the two buttons below to access screening
recommendations.";
//
// label1
//
this.label1.Font = new System.Drawing.Font("Tahoma", 9.75F,
System.Drawing.FontStyle.Bold);
this.label1.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(0)),
((System.Byte)(0)), ((System.Byte)(192)));
this.label1.Location = new System.Drawing.Point(8, 8);
this.label1.Size = new System.Drawing.Size(224, 16);
this.label1.Text = "Screening Guidelines";
//
// btnSite
//
this.btnSite.Font = new System.Drawing.Font("Tahoma", 9F,
System.Drawing.FontStyle.Regular);
this.btnSite.Location = new System.Drawing.Point(50, 149);
this.btnSite.Size = new System.Drawing.Size(140, 24);
this.btnSite.Text = "Site";
//
// btnDone
//
this.btnDone.Font = new System.Drawing.Font("Tahoma", 9F,
System.Drawing.FontStyle.Regular);
this.btnDone.Location = new System.Drawing.Point(8, 235);
this.btnDone.Size = new System.Drawing.Size(48, 24);
this.btnDone.Text = "Done";
//
// frmScreening
//
this.Controls.Add(this.btnDone);
this.Controls.Add(this.btnSite);
this.Controls.Add(this.btnGender);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Font = new System.Drawing.Font("Tahoma", 9F,
System.Drawing.FontStyle.Regular);
}
#endregion
}
}