I have written a stand alone VB6 app that picks data from ACCPAC. I have created a form that passes the user name and password to access ACCPAC as follows: -
theSession.Open(txtUSERID, txtPASSWORD, "SAMINC", dNow, 0)
My challenge is How can I have access to the ACCPAC Companies so that the user can scroll and chose which company to log into. In this example I have hard-coded "SAMINC". However, I want it to be dynamic and be chosen by the user
theSession.Open(txtUSERID, txtPASSWORD, "SAMINC", dNow, 0)
My challenge is How can I have access to the ACCPAC Companies so that the user can scroll and chose which company to log into. In this example I have hard-coded "SAMINC". However, I want it to be dynamic and be chosen by the user