harvesterlily
Programmer
I am working on designing a db that will manage our client maintenance and processing. It's slightly broader than that. There has been a much needed push to centralize info in our company. Except for being available for viewing on our website, it's not being utilized.
Needed info is located in several places:
Our IT dept has db that contains db type, dsn, connection info and various passwords for each client. They are usually first to be aware of this info as they do client installs. So as not to alarm anyone, this info will run hidden in processes in a backend db.
We have a website that contains various addresses, contact info, etc... I have access to these tables as well.
I am looking to bring in each of these pieces into a client setup/maintenance form. I would like to do this sort of like a wizard.
I've created the various relationships to all of these tables. My goal is to utilize any data that exists or create it where needed if it doesn't.
Setup/Maintenance
Main form has two searchable combo boxes. One allows you to search for client by client code or by client name. If you search by client code, I have a procedure that hides the client name combo box and fills a client name text box that is made visible. Vice versa if searching by name. This is working. To be added, a process that allows user the option to add client code/name if not already in list.
From there I have added tabs that contain subforms. I'll explain what I am trying to accomplish before going into problems I've run into.
This form will have several tabs:
I would like to have a form for each address that appears from our web detail tables. Possible for there to be up to four existing for each client. Basically one record per tab/subform. Want tab caption to change as addrname field indicates. I'm guessing that I'd have these tabs existing but hidden unless contains data.
From there,question on main form appears or pop-up that asks if this is a group client. If yes, query will search to see if this particular group receives client statements.
If so, a group address tab should appear with detail. No just proceeds on to next step.
This is the basic idea. I'm guessing that there could possibly be as many as 12 tabs. There will be a pricing survey that determines/displays tabs for relevant services/products, etc... I figure when I can get the first couple up and running, it will be the same syntax with the remainder.
So far....
The client that is selected in the combo box is then passed to the subform recordsource via a sql stmt. I am able to get only one client to match and display tab/subform. It's the first in list. I've tried other clients that do have records. Some show me my subform with #Name# in form fields, then tab/form disappears. Others just show me a blank page. I haven't gotten too far along with this, so I am not opposed to starting afresh with a new db if necessary. My system is tied up running daily processes, but will be glad to post my code if needed when these are done.
thanks in advance
Needed info is located in several places:
Our IT dept has db that contains db type, dsn, connection info and various passwords for each client. They are usually first to be aware of this info as they do client installs. So as not to alarm anyone, this info will run hidden in processes in a backend db.
We have a website that contains various addresses, contact info, etc... I have access to these tables as well.
I am looking to bring in each of these pieces into a client setup/maintenance form. I would like to do this sort of like a wizard.
I've created the various relationships to all of these tables. My goal is to utilize any data that exists or create it where needed if it doesn't.
Setup/Maintenance
Main form has two searchable combo boxes. One allows you to search for client by client code or by client name. If you search by client code, I have a procedure that hides the client name combo box and fills a client name text box that is made visible. Vice versa if searching by name. This is working. To be added, a process that allows user the option to add client code/name if not already in list.
From there I have added tabs that contain subforms. I'll explain what I am trying to accomplish before going into problems I've run into.
This form will have several tabs:
I would like to have a form for each address that appears from our web detail tables. Possible for there to be up to four existing for each client. Basically one record per tab/subform. Want tab caption to change as addrname field indicates. I'm guessing that I'd have these tabs existing but hidden unless contains data.
From there,question on main form appears or pop-up that asks if this is a group client. If yes, query will search to see if this particular group receives client statements.
If so, a group address tab should appear with detail. No just proceeds on to next step.
This is the basic idea. I'm guessing that there could possibly be as many as 12 tabs. There will be a pricing survey that determines/displays tabs for relevant services/products, etc... I figure when I can get the first couple up and running, it will be the same syntax with the remainder.
So far....
The client that is selected in the combo box is then passed to the subform recordsource via a sql stmt. I am able to get only one client to match and display tab/subform. It's the first in list. I've tried other clients that do have records. Some show me my subform with #Name# in form fields, then tab/form disappears. Others just show me a blank page. I haven't gotten too far along with this, so I am not opposed to starting afresh with a new db if necessary. My system is tied up running daily processes, but will be glad to post my code if needed when these are done.
thanks in advance