Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. akcam2006

    Barcodes

    Here is the code for the 128A Barcode... You use it the same way as the 3 of 9 code shown earlier. Option Explicit ' Written by Rodney Marr (RodMarr@mailcity.com) October 7, 2000 ' Modified to 128A by Mike Lightner 12 Apr 2004 ' ' Barcode 128-A Generator ' ' Permission granted for public use...
  2. akcam2006

    Barcodes

    MichaelRed, By setting the Textbox control to "No" you will no longer see the data in the text box. This means you don't need to change the font and only the barcode will show when printed. 1 - Create Report with a TextBox control. (example named Barcode) Make sure the Visible property is set...
  3. akcam2006

    Problem with OpenRecordset with query

    Roy, I'll give it a shot and see if it fixes the problem. As for the use of byte, good call. Didn't even think about that. akcam2006
  4. akcam2006

    Using data from a filtered subform in a report

    dhookom, Thank you, I'll give it a try.
  5. akcam2006

    Using data from a filtered subform in a report

    How do use data from a filtered subform in a report? I would like for the report to only list items that come from the filtered sub form.
  6. akcam2006

    Barcodes

    The font idea will work ok on most computers but I have had some problems with it. I found the following code works much better. Just creat a new module and past this in it. Then follow the instructions for adding the barcodes to your reports. Option Compare Database 'Use database order...
  7. akcam2006

    Problem with OpenRecordset with query

    Inky, Thank you for asking this question. I have been having the same problem. Roy, When I used the above fix in my project it fixed the paramitor error but now I get a data type conversion error. Any ideas? Here is the code I am using: Dim qdf As DAO.QueryDef Dim prm As DAO.Parameter Dim...
  8. akcam2006

    Error 3061 to few paramiters

    I am trying to run a recordsed to get data from a qry with multiple criteria. When I open the report I get an error '3061' to few paramiters: expected 6 Any Ideas? Report VB: Set Cdb = CurrentDb Set rsJobs = Cdb.OpenRecordset("Select Count([Kit_Type])as Jobs From qryQAFilterTA WHERE...

Part and Inventory Search

Back
Top