Hi, i have Form A that calls Form B. After choosing a value from the grid on Form B, i would return a value to Form A. My problem is how would I pass the value to form A? I simply cannot create a new instance of Form A because it contains values.
dim c as new childform
if c.showdialog = dialogresult.ok then
msgbox(c.gridinfo)
end if
private thegridinfo as string
public readonly property gridinfo as string
get
return me.thegridinfo
end get
end property