Question pass the result qurey to other form

hassanm

New member
Joined
Apr 16, 2009
Messages
1
Programming Experience
Beginner
hi all,
anyone know how to pass the result of query when to select item and click button on one form to display item to another form
 
Your question is not very descriptive but whatever the result is; be it a datatable, row or variable if you want to see & use the values in multiple forms then declare its scope at a global level in a module file.
 
You can declare a property or method in form class, and pass the data through this to the correct form instance. While using a shared object may have it's uses the general idea is to think in OOP terms.
 
Back
Top