Search results

  1. B

    Customize connection string on linked table

    I don't know how this is in exchange, but I have firebird linked tables connected as network connection. It might be the best idea to look on net for apropriate driver to set up the network connection.
  2. B

    help with duplicate records

    By the sound of your question this is not a very good idea. If you are setting the criteria only on first and last name what if there are realy two different persons with the same name and last name ( it is not that uncommon ). I would do the check on some more fields, like a birthday or...
  3. B

    How to delete duplicate records in a table

    I use that code for deleting duplicates: Sub DeleteDuplicateRecords(strTableName As String) ' Deletes exact duplicates from the specified table. ' No user confirmation is required. Use with caution. Dim rst As DAO.Recordset Dim rst2 As DAO.Recordset Dim tdf As DAO.TableDef...
  4. B

    Printing Control Panel

    Ok, if I want to use two printers ( one is a sticker printer which uses bundle of blank stickers and other to print invoices which is a normal printer ) all I have to do is to create reports and assign the correct printer to them? P.S. I'm using Access 2007.
  5. B

    Printing Control Panel

    I have a database for packaging department. With that report I'm printing stickers for the boxes. And I thought there is no need for worker to see the report. So if I understand you correctly, I should make a permanent report and just pop it up when I want to print the sticker? When I create the...
  6. B

    Printing Control Panel

    Problem is that I'm printing reports in a silence mode. Programaticly create report, print and delete report.
  7. B

    Printing Control Panel

    Hi. Is it possible to set up a form named Settings where to be two combo boxes to select two printers that will be used in the project. I'm thinking of two variables that are named SelectPrt1 and SelectPrt2 As Printer. Then when I need to print report I can use SelectPrt1 and when I want to...
  8. B

    Working with linked tables

    Yes thats exactly right.
  9. B

    Printing a subform?

    I want to print that photo when I press the button. I'm not sure if I can print photo as attachment just to click on the button?
  10. B

    Printing a subform?

    In the subform I have a photo as an attachment.
  11. B

    Printing a subform?

    I have a problem with printing a Subform. On main form I have some data and 5 subforms. I want to print 1 subform. I created a form with button to print and inserted it to a mainform. When I press the print button it tries to print all the data in the table. I tried to do this: Private Sub...
  12. B

    Working with linked tables

    Ok I did a workaround. I created one table with only product code and attachments and created a relationship on product codes. Now only when new product is added I have to enter attachments in the table.
  13. B

    Working with linked tables

    Problem arises as I do not have access to a firebird database and I don't understand the database. I only downloaded drivers for firebird and link the tables together. So I need to update the table with the data on a linked table. I was thinking of crating two tables: one which I would copy the...
  14. B

    Working with linked tables

    I came across a solution and I wonder if it is possible to do this with "Docmd.RunSQL" statment, which I would have to update only linked fields. Is that possible?
  15. B

    Working with linked tables

    Firebird uses SQL same as Access, but i can not define in firebird the field as attacment.
  16. B

    Working with linked tables

    Ok. I will tell the whole project I'm working on. Some time ago our company got the database ( firebird ) for our products. It contains products, working orders, reports... Now I have to do application for packaging department which has to include printing stickers for the boxes, main boxes and...
  17. B

    Working with linked tables

    The stickers are made of barcode, name of product, product code.... So there are pics ( JPG ).
  18. B

    Working with linked tables

    Problem is that I would like to add attachment fields in the database for printing barcode stickers in packaging department. The source database is a Firebird and can not handle attacments.
  19. B

    Working with linked tables

    Hi. I have a problem with linked tables. I have a linked table and I want to add some fields to the data. I know I can't add new fields to a linked table ( because it's read only ), so I made a new table in my project. In that table I added a few new fields that I need for my application. So...
Back
Top Bottom