I have a MDI application in which I do somthing like:
dim frm as new frmName
frm.show
from the form "frmName" I load another form which needs to pass a value back to the "frmName".
The second form has a public variable txtOwner as textbox
I set txtOwner = "frmName.txtInput" before loading the second form
Problem: the "frmName.txtInput" isnt change due to:
dim frm as new frmName
the textbox is never updated. Im playing around with the ByRef/ByVal flags but i can't get it to work, any ideas? Thanks
dim frm as new frmName
frm.show
from the form "frmName" I load another form which needs to pass a value back to the "frmName".
The second form has a public variable txtOwner as textbox
I set txtOwner = "frmName.txtInput" before loading the second form
Problem: the "frmName.txtInput" isnt change due to:
dim frm as new frmName
the textbox is never updated. Im playing around with the ByRef/ByVal flags but i can't get it to work, any ideas? Thanks