I'm running simple dialog on CLR where I fill some textBoxes and press push, So but I need to know when I pressed push.
Here is how I run dialog :
void CFloBossOPCDlg::OnBnClickedButton3()
{
NewBoi ^ nb = gcnew NewBoi();
nb->Show();
I can't declare nb as global variable and even I can't declare nb as part of CFloBossOPCDlg so how can I override close event to understand when I need to get filled textboxes ? Thank you.