Hi -
I call a method (method is within the parent form) in the child form right before I close the child form. looks something like this:
m_parent.GetOrd erDetailsFunc() ;
this.Close();
The method should add an items to a listbox located on the parent form, but it does not add the items. I had strategically placed a message box to make sure that the code was being executed, and it is working. Yet, the listbox is blank.
Can someone help? Or, am I going about this incorrectly?
Thank you for your time and help!!
- suexicano
I call a method (method is within the parent form) in the child form right before I close the child form. looks something like this:
m_parent.GetOrd erDetailsFunc() ;
this.Close();
The method should add an items to a listbox located on the parent form, but it does not add the items. I had strategically placed a message box to make sure that the code was being executed, and it is working. Yet, the listbox is blank.
Can someone help? Or, am I going about this incorrectly?
Thank you for your time and help!!
- suexicano
Comment