I don't know why this is so hard for me to do.
I have cbo boxes on one form1 I need the results of cboMonth and cboYear to be available in form2; I can't seem to get them to pass between forms; how do i do this?
Printable View
I don't know why this is so hard for me to do.
I have cbo boxes on one form1 I need the results of cboMonth and cboYear to be available in form2; I can't seem to get them to pass between forms; how do i do this?
Add a module to your project and declare any var there (as Public):
After the user selected something from te first combo box you'll have to apply this value to a var and then u can use it in any form of you projectCode:Public MyVar as String
thanks that was it :)