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 SkipVought 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: *

  • Users: Denae
  • Order by date
  1. Denae

    Sending email messages with loop sends same record each time

    @SkipVought - I tried your suggestion and it broke the code even further, which is why I reverted back to to the partially working code. I do sincerely appreciate your help! I am very much a novice with VBA. :) However I found a solution: I don't know why but changing the code from rs.XX to...
  2. Denae

    Sending email messages with loop sends same record each time

    I am still running into problems with the code, not sure how or what to inspect. I have a button on the form (frmEmail_Approval_All) that has the records I want to "send". When I click the button the code runs to send an email using the fields on the form then adds a record to the...
  3. Denae

    Sending email messages with loop sends same record each time

    I have moved the suggested code to the beginning along with the Dim statements. But now I am getting a Run-time error, the item has been moved or deleted. When I debug it takes me to the .TO - strTo line of the code. I have a command button on a form (frmEmail_Approval_ALL) that executes the...
  4. Denae

    Sending email messages with loop sends same record each time

    I have code that is sending an email then updating a table with the date/time the email was sent, it is sending the first record and looping the right number of times (there are 3 email messages to be sent so it sends 3) but it is repeating the data in the first record instead of moving to the...
  5. Denae

    Dynamic report based on multiple selections - formatting issues

    MajP, thank you for the code. I have pulled it into my form, what I am not understanding is what I need to change to make it work in my database. I have filled in the tag field of all the checkboxes with their report names, but other than that, I am not sure what to do. I apologize for my...
  6. Denae

    Dynamic report based on multiple selections - formatting issues

    So take the printing/PDFing out of it, since that part seems to be working. Is there any way to combine multiple reports into one file based on the selections made on the form? Outside of the way I am currently doing it with a master report and sub-reports?
  7. Denae

    Dynamic report based on multiple selections - formatting issues

    You can do it without Adobe Pro using the following code. DoCmd.OutputTo acOutputReport, "rptPPW_PKT00_Consolidated", acFormatPDF, strPathAndFile, True My problem is not how to do the PDF, but how to do the consolidation based on the users selections without using the method I described above...
  8. Denae

    Dynamic report based on multiple selections - formatting issues

    I have a switchboard with 22 different reports, the user has the ability to check-mark the reports they want to print (e.g. 1, 5 or 22), then print the selected files to one PDF. I accomplished this by creating one master report with each of the 22 reports added to the detail as sub-reports...
  9. Denae

    Run-time error '2489' on print

    I got it to work by simplifying, it is always the little things that get me: Private Sub Form_AfterUpdate() DoCmd.OpenReport "rptPrint_ClaimTag_Item", acViewNormal DoCmd.Close acReport, "rptPrint_ClaimTag_Item" End Sub
  10. Denae

    Claim Tag Tracker - use next tag in new record

    I added the following to the AfterUpdate property of the form...not sure which one works but it updates the strNext field when it goes to the new record. Me.Refresh Me.Repaint Me.Requery So it fixed my problem...but not sure why.
  11. Denae

    Claim Tag Tracker - use next tag in new record

    I tried putting .value but it still isn't working. Right now I have the code in the GoFocus event for the Claim_Tag_ID field...where is the right place for this to trigger
  12. Denae

    Run-time error '2489' on print

    The full error I am getting is: Run-time error '2489': The object 'rptPrint_ClaimTag_item' isn't open.
  13. Denae

    Run-time error '2489' on print

    It is not letting me step through, it does nothing when I select this option. When I click Debug it highlights the line: DoCmd.SelectObject acReport, "rptPrint_ClaimTag_Item"
  14. Denae

    Claim Tag Tracker - use next tag in new record

    I have a database that is tracking items that are being checked in and out during a festival. Each item is tagged with a unique ID (ITM_2016_####) and plastic claim tag. I have a set list of claim tag IDs that can be assigned to items as they are entered into the system. On a form I list each...
  15. Denae

    Run-time error '2489' on print

    I have a form that has the following code on the AfterUpdate property, it is printing an ID Label for the record that has just been added. The label prints but then Access gives me the Run-time error. Any help would be greatly appreciated. Private Sub Form_AfterUpdate() DoCmd.OpenReport...
  16. Denae

    Access VBA for Barcode Scan

    I have a database that tracks check-in and check-out of items. Each item has a barcode assigned to it with a three digit number. I recently purchased a gun scanner to scan the barcodes to check them in/out. I want to scan the barcode and have the item number auto populate the form, then mark...
  17. Denae

    I have a database that tracks check

    Sorry about that, this is where I made my last VBA post. I will re-post.
  18. Denae

    I have a database that tracks check

    I have a database that tracks check-in and check-out of items. Each item has a barcode assigned to it with a three digit number. I recently purchased a gun scanner to scan the barcodes to check them in/out. I want to scan the barcode and have the item number auto populate the form, then mark...
  19. Denae

    Create records based on form selections

    I did have a typo in the reference, so simple, but so annoying!!! I fixed the string and now the macro is running! Thank you, thank you, thank you!!! One question, it is asking me to append each row, then when it is done the records aren't there until I refresh the view. Is there a way to...
  20. Denae

    Create records based on form selections

    INSERT INTO tblPayments_PD_Amounts (strPD_Case, dtmPD_Date, curPD_Amount) VALUES ('00000000', #6/24/2016#, 100) Date is 6/24/2016

Part and Inventory Search

Back
Top