Hi,
How could I return value from childform?
I have code as below. But, .NET unable to detect my property RegionID defined in my child form.
private void lnkRegion_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
if (this.childFormDialog.ShowDialog() == DialogResult.OK)
{
this.cboRegion.Requery();
//this.cboRegion.SelectedValue = this.childFormDialog.childForm.RegionID;
}
}
Thank you