> Hi All,
>
[quoted text clipped - 6 lines]
> called `Images` when its click, however I just can`t seem to find anywhere
> where it tells me how to do this.
something like:
Images^ frmImages;
private void btnImages_Click(Object^ sender, EventArgs^ e)
{
frmImages->Show();
}
and then in init code:
frmImages = gcnew Images();
btnImages->Click += gcnew EventHandler(this, &Main::btnImages_Click);
> Anybody point me in the right direction?
>
> Many Thanks
> IGMad .......................