Search results

  1. T

    reports show number ID not data

    You can create two fields on your report and then OnOpen do the following: Me.Textbox1=Me.YourCombo1.Column1 Me.Textbox2=Me.YourCombo2.Column1
  2. T

    report showing numbers not text

    Try with = [City] & ", " &[cmbState].Column(1)
  3. T

    Print only last record.

    I have a report and I want to print more than once on the same paper the mentioned report i.e. After thai add the first record the report should look like: ---------------------------------------------- Title ---------------------------------------------- record1...
  4. T

    How can I change the navigation buttons Caption???

    Can anybody tell me how can I change the Caption of a navigation button of a form. i.e. Instead of Record:...of... to put blabla:...ttt....? Thank you forward.
  5. T

    Print only last record

    I have a report with a several records on it. I need to print only the last record, but to preview all of them. Can anybody help me?
  6. T

    Expiring date!

    Jack thank you very much. Best Regards from Tomki.
  7. T

    Expiring date!

    Hello everybody. I have a database and i want to share it with some people. It is protected but i want to make it usefull just for 3-4 days (expiring date). How can i make my database usefull just for 3-4 days so after these period on somebodies computer to appear "The date for using this...
  8. T

    Hide Duplicates on Combo Box.

    Thank's Fizzio. It worked ;)
  9. T

    Coloured field boxes

    This is one of the ways that you can do it: On the field 1 AfterUpdate do this: If Me.field1= "blabla" Then Me.field2.BackColor = 241146240 (for desired color search on that field - Format - Backckolor) End If The same way you can change the Fonts Color if you want.
  10. T

    Hide Duplicates on Combo Box.

    Hello everybody. I have the form which serve's as a Search Form. On that form I have the combo Box which looks up the datas from a specific table. The problem is like this: On the Combo Box I want to look up just for a unique records. Example: I have an a table of a personel. On that...
  11. T

    Find Contact or company in form

    You can do it by creating a new Form and then on that Form to add some Combo Boxes which lists the datas from certain fields (name, surname etc). Then near each of these combo boxes you can add command buttons which do the function of searching. I dont know how to send to you a simpple...
  12. T

    Need Help on Print Dialog!

    Helo everybody. I have a form on which I have a Command Button which Preview a certain Report, and also on that form there is the other command button which prints directly that Report. Also, I've created a Private Menu Bar with different functions. The question is: How can I add the code on...
  13. T

    Picture!

    I have a Form which contains the informations about the Employees. Everything is going good untill I add the picture of an employee. Then the Database Size grows up for 4-5 MB just for one picture(even if that picture has only 20 kB or 100KB). Where I've made a mistake?
  14. T

    I really need HELP!

    Hello everybody! I'm new at this forum and if you can help me, please do it. The problem is as follows: I have an a form which I use as a dialog box for generating a Report. In this form there are 5 fields which have to be filled, so that e Report can be generated. If I don't fill any of these...
Top Bottom