I have two pieces of code (classes), one is a User Control with a couple text boxes, and one is a User Control with a textbox and a slider. I want to use the second Control inside of the first. This was working fine for a while, but now whenever I add the second to the first and try to build, the compiler displays a dialog message: "Visual C# Express 2010 has encountered a problem and needs to close." Then, Visual C# exits. After that, it cannot even load my first class in the designer, it just keeps crashing. It's very frustrating, and I don't know what's causing it. Could this be a problem with my code, or is it a problem with the Visual C# Designer Settings? I'm completely lost on this one!
First class:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Windows.Forms;
using System.Windows;
namespace EmployeeManger
{
public partial class EmployeePanel : UserControl
{
/* The parentTabPage TabPage */
TabPage parentTabPage;
MainForm parentForm;
/* Public variables */
public Employee currentEmployee;
public bool isChanged = false;
public EmployeePanel()
{
//this.parentTabPage = page;
InitializeComponent();
clearLabels();
ExitEdit();
editButton.Enabled = false;
}
/* The *real* constructor */
public void Initialize(TabPage page, MainForm main)
{
this.parentTabPage = page;
parentForm = main;
//ratingsPanel.onChanged += this.notifyChanged;
}
//Load an Employee into the Panel
public void loadEmployee(Employee e)
{
/* Check to see if there is a modified Employee loaded */
if (this.isChanged)
{
DialogResult result = System.Windows.Forms.MessageBox.Show("You have unsaved changes on this page. Do you wish to save them?", "Save Changes", MessageBoxButtons.YesNoCancel,MessageBoxIcon.Question);
if (result == DialogResult.Cancel)
{
return;
}
else if(result == DialogResult.Yes)
{
saveChanges();
}
}
/* Load in the employee's data */
Unchange();
currentEmployee = e;
nameLabel.Text = e.Name;
addressLabel.Text = e.AddressStreet + ", " + e.AddressCity + ", " + e.AddressState + ", " + e.AddressZIP;
emailLabel.Text = e.EmailAddress;
homeLabel.Text = e.PhoneNumber + " (Home)";
cellLabel.Text = e.CellNumber + " (Cell)";
editButton.Enabled = true;
/* Load employer data */
//employerBox.Items.Add(this.currentEmployee.employer.CompanyName);
}
/* Return the Employee CURENTLY represented by the datafields */
public Employee getEmployee()
{
return Employee.fromString("");
}
private void main_Click(object sender, EventArgs e)
{
}
private void cellLabel_Click(object sender, EventArgs e)
{
}
//Clear all of the labels
public void clearLabels()
{
nameLabel.Text = "Click on an employee";
addressLabel.Text = "";
emailLabel.Text = "";
homeLabel.Text = "";
cellLabel.Text = "";
employerBox.Text = "";
}
/* Enable all editable fields */
public void EnterEdit()
{
nameLabel.ReadOnly = false;
addressLabel.ReadOnly = false;
emailLabel.ReadOnly = false;
homeLabel.ReadOnly = false;
cellLabel.ReadOnly = false;
editButton.Enabled = false;
saveButton.Enabled = true;
notifyChanged();
}
/* Disable all editable fields */
public void ExitEdit()
{
nameLabel.ReadOnly = true;
addressLabel.ReadOnly = true;
emailLabel.ReadOnly = true;
homeLabel.ReadOnly = true;
cellLabel.ReadOnly = true;
editButton.Enabled = true;
saveButton.Enabled = false;
}
public void notifyChanged()
{
parentTabPage.Text = "Employees*";
this.isChanged = true;
}
public void Unchange()
{
parentTabPage.Text = "Employees";
this.isChanged = false;
}
/* Function is called when "Edit..." button is called */
private void editButton_Click(object sender, EventArgs e)
{
EnterEdit();
}
/* Function is called when "Save" button is clicked */
private void saveButton_Click(object sender, EventArgs e)
{
saveChanges();
}
public void saveChanges() {
ExitEdit();
Unchange();
/* Save the current values to the curentEmployee object */
currentEmployee.Name = nameLabel.Text.Trim();
/* Parse the address */
String addressString = addressLabel.Text.Trim();
String[] array = addressString.Split(',');
currentEmployee.AddressCity = array[1].Trim();
currentEmployee.AddressState = array[2].Trim();
currentEmployee.AddressStreet = array[0].Trim();
currentEmployee.AddressZIP = array[3].Trim();
currentEmployee.EmailAddress = emailLabel.Text.Replace(" ","");
currentEmployee.PhoneNumber = homeLabel.Text.Replace(" ","").Replace("(Home)","");
currentEmployee.CellNumber = cellLabel.Text.Replace(" ", "").Replace("(Cell)", "");
editButton.Enabled = true;
/* Put the employee back into the main list */
parentForm.Employees[currentEmployee.EmployeeID] = currentEmployee;
parentForm.writeEmployees();
parentForm.refreshAll();
}
private void EmployeePanel_Load(object sender, EventArgs e)
{
}
}
}
Second class:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace EmployeeManger.GUI
{
public partial class RatingsPanel : UserControl
{
/* Public global variables */
public Evaluation ratings = new Evaluation();
public Employee employee;
public Rating currentRating = new Rating();
public EmployeePanel ParentPanel = new EmployeePanel();
public delegate void OnChanged();
public event OnChanged onChanged;
/* Public constructor */
public RatingsPanel()
{
InitializeComponent();
}
/* Called when the form is loaded */
private void RatingsPanel_Load(object sender, EventArgs e)
{
/* Set up our listeners */
commentsBox.TextChanged += commentsBox_TextChanged;
scoreBar.ValueChanged += this.scoreBar_ValueChanged;
/* Set up some parameters */
categoryBox.SelectedIndex = 0;
}
/* Called when the text in "commentsBox" changes */
private void commentsBox_TextChanged(object sender, EventArgs e)
{
/* Update the chars label */
SetChars(commentsBox.Text.Length);
notifyChanged();
}
/* Update our Ratings object */
public void LoadRatings(Evaluation r)
{
ratings = r;
}
/* Save the current data to the currentRatings object */
public void SaveCurrent()
{
currentRating.Comment = commentsBox.Text.Trim();
currentRating.Score = scoreBar.Value;
}
/* Set the chars label to the correct number of chars, ie "128/256" */
public void SetChars(int chars)
{
charsLabel.Text = Convert.ToString(chars) + "/" + "256";
}
/* Called when the user selects a new category */
/* We want to grab the currentRatings object and update our UI */
private void categoryBox_SelectedIndexChanged(object sender, EventArgs e)
{
/* Save what we've got */
SaveCurrent();
/* Update our "currentRating" object */
int index = categoryBox.SelectedIndex;
Rating rating = ratings.ratingsArray[index];
currentRating = rating;
/* Update the UI */
commentsBox.Text = currentRating.Comment.Trim();
scoreBar.Value = currentRating.Score;
notifyChanged();
}
/* Set the value of the "isRecommended" variable */
private void recBox_CheckedChanged(object sender, EventArgs e)
{
ratings.isRecomended = recBox.Checked;
notifyChanged();
}
/* Called when the scrollBar value changes */
private void scoreBar_ValueChanged(object sender, EventArgs e)
{
ratingLabel.Text = ("Rating: " + Convert.ToString(scoreBar.Value));
notifyChanged();
}
/* Notify the parent that the values have changed */
public void notifyChanged()
{
if (onChanged != null)
{
onChanged();
}
}
private void scoreBar_Scroll(object sender, EventArgs e)
{
}
}
}