Here is the modification:
public Main()
{
InitializeComponent();
//String admin = "Admin"; // not being used?
this.Load += new System.EventHandler(this.Main_Load);
}
private void Main_Load(object sender, EventArgs e)
{
if ("Admin" == user)
btnAdmin.Enabled = true;
else
btnAdmin.Enabled = false;
}