Search results

  1. Minddumps

    Is If statment the best to use for multiple entries?

    Awesome, I learn something new everyday lol. I tried putting this code you gave me on both on current and onOpen as you stated and came up with in the onOpen portion. Could it be because I'm trying to base access on an accessID rather than a userID? That it's definitely too long and may...
  2. Minddumps

    Is If statment the best to use for multiple entries?

    [SOLVED--SEE BELOW TRAFFIC] I have a form in which only Users signed in with certian user access ID's can click on certian Command buttons on the form. Since there are 7 buttons on this one page, my if statements are growing very large. Does anyone know if there an easier/better way to...
  3. Minddumps

    How do you count records based on the opened query?

    [SOLVED--SEE BELOW TRAFFIC] I've created a report to list every record (1900 something total). This one main report is used to open my many querys (more than 50). In order to save myself from creating numerous reports I filter the records through my command button before opening the report...
  4. Minddumps

    Creating a Query displayed in a text box that counts records?

    I had same question, thanks for posting :)
  5. Minddumps

    way to email/save all queried records individually?

    Anyone know if there's a way to save all queried records with each as it's own individual pdfs instead of all merged into one?
  6. Minddumps

    Maria (MindDumps) from Kentucky, USA

    I suppose I should have done this when I first registered lol. Short and sweet is I love to learn technical things. I don't have much of a memory so I learn mostly by cut & paste, but have gotten far with that and a little bit of common knowledge. I have managed access DB in the past, but...
  7. Minddumps

    sendObject report based on Query in Access 2007

    I recieved help on this in another thread. Here's the code for anyone else looking for the same solution. Private Sub MailReports_Click() On Error GoTo Err_Email_Click Dim strReport As String Dim MyFilename As String Dim MyPath As String Dim ShowPdf As Boolean...
  8. Minddumps

    How do you change the name of email attachment?

    Ahhh! You are my new HERO!! I was going crazy trying to figure this out! lol Thank you so much! :) For others looking for my full code used here it is: Private Sub MailReports_Click() On Error GoTo Err_Email_Click Dim strReport As String Dim MyFilename As String Dim MyPath...
  9. Minddumps

    How do you change the name of email attachment?

    SOLVED--SEE BELOW TRAFFIC I was given the suggestion to save the report to desktop, then email that saved doc (pdf), then delete the saved doc. My reports open up using the same query that my form was run on. I'm assuming I need to somehow combine the two codes that I have for save and then...
  10. Minddumps

    sendObject report based on Query in Access 2007

    I haven't figured out how to change the email attachment filename yet, however, I was given the idea that the report would have to be saved to the computer, then emailed from that location, then delete the saved file. Does anyone have VBA code that has succesfully pulled that off? If so please...
  11. Minddumps

    Email PDF from Access 2007 using VBA

    Funkbuqet: did you ever figure out if there was a way to specify the name of the outputted pdf file?
  12. Minddumps

    Converting report to PDF and attach it to email

    I have Access 2007 so I don't know if code would be much different, but thought it might help you (note my Record ID includes text): Private Sub Email_Click() On Error GoTo Err_Email_Click Dim strReport As String Dim stEmail As String Dim stSubject As String strReport...
  13. Minddumps

    sendObject report based on Query in Access 2007

    SEE SOLUTION IN BELOW REPLIES: For the longest time I couldn't figure out how to save/e-mail a report based on a Query. After playing around with different options in the Embedded Macro section I figured out [OpenReport] in hidden window mode with the Filter Query inputted allows the...
Back
Top Bottom