I have a window that I've placed a user object on. This user object has a button on it. The script behind the button looks like:
iw_parent.Trigger Event ue_filter_dw(is_parm1, is_parm2)
iw_parent is an instance variable that is populated in the contructor event of this user object: iw_parent = GetParent()
When I try to close the script for the above named button, I get the following error:
unknown function name: ue_filter_dw
I'm using PB6.5. How can I trigger a parent windows user event that requires arguments from a user object that sits on that window?
iw_parent.Trigger Event ue_filter_dw(is_parm1, is_parm2)
iw_parent is an instance variable that is populated in the contructor event of this user object: iw_parent = GetParent()
When I try to close the script for the above named button, I get the following error:
unknown function name: ue_filter_dw
I'm using PB6.5. How can I trigger a parent windows user event that requires arguments from a user object that sits on that window?