I made two forms. And I have two questions.
CreateCleanCount(Parent Form = FormA)
UserQtyForm(Child Form = FormB)
1. When FormB is closed, how can pass from the global variable of FormB to FormA?
[Form B]
real UserQty;
public void closeOk()
{
super();
/*
source code ??
*/
}
2. When FormB is closed, how can range to datasource of FormA by variable of FormB?
[Form B]
CleanCountID _CleanCountID;
public void closeOk()
{
super();
/*
source code ??
*/
}
*This post is locked for comments
I have the same question (0)