Recent content by ck01

  1. C

    Need Example of multiuser contact manager

    I've got a contact manager application that will be split and the backend will run on a server. I would like to take it to the next step where users can download their current appointments and upload any changes. It would be nice if they could do all of this from the field by logging into our...
  2. C

    How to autofill a zipcode from a town name??

    OK, I see what you are saying. Still, for this example I am using bound keys.
  3. C

    How to autofill a zipcode from a town name??

    I'm not sure of Darkat's goal, but on my form both the city and state/province are BOUND controls. If his form is for data entry, he would definately want theset bebound controls.
  4. C

    How to autofill a zipcode from a town name??

    it works and it does what he wants
  5. C

    Query results displayed in a forms list box

    I might be able to help you, but I need a lot more clarification.
  6. C

    How to autofill a zipcode from a town name??

    Well, I was going to upload an example, but this should be just as good and you should be able to follow the code with no problem. Please note that I use a function and two subs. One sub is for the afterupdate event and the other is for the beforeupdate event. You will still need a table...
  7. C

    Mass change from http:// to mailto:

    Here is your solution. Look through the code and adjust your form accordingly. Basically, you will need to add a textbox named firstname, lastname and emailname. The control source for the emailname textbox must be the hyperlink type. Private Sub EmailName_AfterUpdate() ' If you just type...
  8. C

    How to autofill a zipcode from a town name??

    I have a solution for you. I'll post an example tomorrow. The way you should do this is have the user type in a zip code. If the zip code is in your list, have it grab the city and state information to fill in the form. If the zip isn't in the list, you want a message box asking the user if...
  9. C

    How To Treat Tiered Sales Commissions

    I understand. If you don't mind, I would like to try the solution that you offered and if I have problems upload the database to show you. I hope you will still be around to take a look. Thanks
  10. C

    How To Treat Tiered Sales Commissions

    BY the way, if you have an example database, I would ove to see it.
  11. C

    How To Treat Tiered Sales Commissions

    That's great but.... I'll have to give this a try at home tonight. If I have a problem, I hooe you will still be around to help out. ALso, I will definately upload the database for sharing when it is complete. Thanks again!
  12. C

    Seperate multiple data in 1 feild

    Can someone please upload a sample database that demonstrates how to handle price breaks in a table. This could be what I am looking to do with a tiered commission structure that my company uses. Thanks!
  13. C

    How To Treat Tiered Sales Commissions

    I'm working on a contact manager/sales manager database for a company where commission plans are tiered based on the gross margin generated from the sale. The company also has two types of commission plans available to the sales rep (Straight commission & Commission + Base). Here is an example...
Back
Top Bottom