Search results

  1. B

    Word Report

    Thanks for the help on that.... However, For some reason, it doesn't bring up the Word Document unless I click the button twice (the code is in the "On Click" portion). Also, the fields aren't populating with the data. Any idea why?
  2. B

    Word Report

    Hello, I have a two part question.. I am trying to create reports using the Word Application vs. using Access reports. I grabbed some code off the internet and placed it on the "on click" command of a button, but received a "user not defined" error pointing to the "Dim appWord As...
  3. B

    Email Button

    Ok, I figured it out: FollowHyperlink "mailto: me@myemail.com?subject=Tasker&body=hello%0Ahow are you?"
  4. B

    Email Button

    ok, I figured part of it out... FollowHyperlink "mailto: me@myemail.com?subject=Tasker" But I can't figure out how to fill the body with the email message. Can someone help?
  5. B

    Email Button

    How do I create a button that, when clicked, opens an email with the to: field, subject line, and body filled with text... I.E. To: me@myemail.com subject: New Task Body: This is an automatically genereated email to notify you that a new tasker has been generated for action. Please...
  6. B

    Automatic Form Open

    Thanks Bob!
  7. B

    Automatic Form Open

    Dumb question...in 2000, how do I get my main form to open automatically when I click on the Access database?
  8. B

    Report from 2 Tables

    I created a new query and linked my report to it, but it isn't working. Here is a jist of what I have In the report: tblA.fldA tblA.fldB tblA.fldC tblA.fldD tblB.fldA tblB.fldB Common Thread between tblA and tblB: tblA.fldE tblB.fldC The query I generated has the fields from both tables...
  9. B

    Report from 2 Tables

    dumb question...where's the query builder? using 2003
  10. B

    Report as email text

    Hello, Is there a way to take the data compiled into a report and send it as the text in an email rather than as an attachment?
  11. B

    Report from 2 Tables

    Hello, I have a comments report that is bound to tblComments. I have 2 textboxes I need to add to the report that need to be bound their respective fields in tblMain. Both Tables have a fldTaskNumber. How do I associate those two textboxes to tblMain so that the record in tblComments and...
  12. B

    Convert Report

    Hello, I actually have a 2 part question... How do I cause a report button on my form to open a report of the current record only? And how can I have the report automatically be converted/saved/displayed in .pdf rather than displaying in Access format?
  13. B

    Convert Report

    Hello, I actually have a 2 part question... How do I cause a report button on my form to open a report of the current record only? And how can I have the report automatically be converted/saved/displayed in .pdf rather than displaying in Access format?
  14. B

    Filter on Report

    I used the code below for my database, and I get a compile error. What am I doing wrong? DoCmd.OpenReport (rptMemo,acViewPreview,,[fldTaskNumber] = Forms![frmMain]![fldTaskNumber],,)
  15. B

    SELECT COUNT Questions

    Hello, I want to have a textbox provide a count of records matching certain parameters. I have a general idea of how to write the code, but can't make it work... Basically, I want the textbox to display the count of all records that match fldA (reference number) and fldB (project type)...
  16. B

    BackColor problem

    Of Course I figured it out as soon as I asked. sorry (It's the AfterUpdate for the textbox..right?)
  17. B

    BackColor problem

    Of Course I figured it out as soon as I asked. sorry (It's the AfterUpdate for the textbox..right?)
  18. B

    BackColor problem

    Hey RuralGuy: Awesome! You are King. Just one more question. Is there a On??? where it makes the change as soon as data is entered?
  19. B

    BackColor problem

    I tried developing a new code: If Me![OverallClassification].value = "" Then Me![OverallClassification].BackColor = vbWhite Else: Me![OverallClassification].BackColor = vbYellow End IF I got an "Else without If" error. It doesn't see my If statement at the beginning?
  20. B

    BackColor problem

    What exactly am I looking for in the VBA Help System? A little more detail --> the error message is "Compile Error: End If without Block If". I'm not sure why this error is coming up if I have an If statement before End If.
Back
Top Bottom