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 IamaSherpa 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. techi1961

    Barcode Formatting

    Hi Duane, Yes, this is correct and I was able to play around with the placement of "" and finally got to work =Code128("~212" & "91" & [Delivery Docket Temp.SpecNo] & "" & "(37)" & " " & [Weight],1,True) Thanks,
  2. techi1961

    Barcode Formatting

    Hi, I have a barcode report that prints the following barcode in the following format. (91) 10200169 (37) 1 It use the following control source: =Code128("~212" & "91" & [Delivery Docket Temp.SpecNo] & "" & "(37)" & [Weight],1,True) which is taken from a table called Delivery Docket Temp...
  3. techi1961

    Call subform from a Popup form

    Hi Duane, Sorry, the code works fine. It is called from the main form that calls the popup print form which the user just clicks a control to print the report (record source the Delivery Docket Temp Table) Your right the name of the source object is the Delivery Docket Temp Table which is...
  4. techi1961

    Call subform from a Popup form

    Hi, How do you call/refer to a subform (Delivery Dockets) of a form (Jobs) from a popup form (Print Screen). I have a form called Jobs and subform called Delivery Dockets. I have cmdButton on the main form that runs the code below to open a popup form called "Print Screen" for printing reports...
  5. techi1961

    Append more then once into temp table

    @PHV Thanks very much that did the trick....
  6. techi1961

    Append more then once into temp table

    @Trevil620, Thank you for your reply Sorry but I am not calling through the SQL method I am using the DoCmd to run this append query from the main form DoCmd.OpenQuery "AppendDeliveryTemp", acNormal, acEdit How would I use your vba code with this? Thanks again,
  7. techi1961

    Append more then once into temp table

    I need to append a single record of a subform named Delivery Dockets on a form called Jobs to a temp table named Delivery Dockets Temp more than once depending on the number entered in a field named "Pieces" in the subform. I currently have a button on the main form Jobs that currently calls...
  8. techi1961

    Generate multiple records from each line of

    @dhookom No I don't need to create and save records. only generate records in a query to be used in a report.... Main Form: Jobs Datasource, Table: Jobs JobID - Autonumber Subform: Delivery Dockets Datasource, Table: Delivery Dockets Delivery DocketID - Autonumber JobID - Number...
  9. techi1961

    Generate multiple records from each line of

    Hi Randy, Thanks, will toy around with your example. Hi Duane, Yes, I was thinking the same approach Basically, there is a data field named "Pieces" on the subform datasheet. Users can enter a number from 1 to 20 or more. What I need to do is generate a delivery note for however many number...
  10. techi1961

    Generate multiple records from each line of

    Hi, I have a form called Jobs and a subform called Delivery Dockets. In the the subform I have a the following fields called pieces and description. In the field called pieces our user can enter any numbers from 1 to 20. I need to some how create a code that can generate multiple records for...

Part and Inventory Search

Back
Top