I have a parent form which passes an array of Creature classes to the child form. I can access the passed classes (crt) from the main form code, but not from the button event. Sorry if this doesn't make sense...basically I need to access crt variable from the button click event. The following code is from the child, or dialog, form. The Creature[] array passes just fine, but not into the button click. Any help would be appreciated!! Sam
using
namespace
{
InitializeComponent();
comboBox1.Items.Add(crt[i].Name +
}
comboBox1.Items.Add(crt[i].Name);
comboBox1.SelectedIndex = 0;