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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dgirl1010

  1. dgirl1010

    Pausing VBA code

    I have a module of code that runs several make-table queries consecutively. They are querying from a very large database (several million records) that is linked to the Access db, and is located in another state. So I need to insert a pause between each query to allow the table to finish...
  2. dgirl1010

    Problem with counting zero records

    Hmm, that gave me a type mis-macth error. But I did figure something else out that works, I just did a left join to include all the records from the table where I keep a list of the phase names. :P Love it when it's something simple like that! Thanks!
  3. dgirl1010

    Problem with counting zero records

    I'm working on a report that will show me the number of projects I have by phase. There are some phases that no projects are in, and I need to be able to display a zero count on the report for them. I've tried using Sum(IIf([ProjectStage],1,0)), but I still don't get any zero counts. Help!
  4. dgirl1010

    Return User Name

    My code for this is a little more simple than yours, but it might do the trick for you. I just set the field to the Environ("username"). Example: Forms!FormName!txtChangedBy = Environ("UserName")
  5. dgirl1010

    .Visable help needed

    Thanks Skip, I did a debug/compile and it didn't catch it. :?
  6. dgirl1010

    .Visable help needed

    [blush] Hmmm, weeeelll, that does work better...
  7. dgirl1010

    .Visable help needed

    I have a form to detect idle time and close a db after a certain amount of time has been reached. It is launched at startup and hidden from the user. In order to close the form the user must enter a password. If the user hits cancel on the password prompt, I want to close the password prompt...
  8. dgirl1010

    hyperlink as an email?

    Thanks that worked. :) I did have to change the format in the table from hyperlink to text though.
  9. dgirl1010

    hyperlink as an email?

    I have a really dumb question, please forgive me if I'm in the wrong forum. I have a table where I store a list of contacts, including their email addresses. I'd like to be able to just click on the address and have a new email open with that address in the TO line. Is this something I can...
  10. dgirl1010

    Count function in a report

    That worked! Thanks!
  11. dgirl1010

    Count function in a report

    Hi there, I'm having issues using the Count function in a report. I have two totals in the report footer, one for the total number of records, and one for the total number of a certain type of record (special requests) and also a percentage of the total number of records based on the two...
  12. dgirl1010

    Assigning multiple strings to a Dim'd variable

    Ah! That makes sence! Thanks so much!
  13. dgirl1010

    Assigning multiple strings to a Dim'd variable

    Please bear with me, I'm still learning VBA. :) I have a form that allows a user to select how they want to view a report (Open items, closed items, on-hold items etc). In the "Open" category there are several statuses that need to be included on the "Open Items" report. I'm using a select...
  14. dgirl1010

    OLE Object Erros on subforms

    I got it! I knew it was something simple, and it was. I had to change the name of the form to ConfigDetailsSub_frm. I still had it as the default name (DOH!). Changed that and this works like a charm. Thanks for the help! :)
  15. dgirl1010

    OLE Object Erros on subforms

    Just tried this too, with no luck: If (Eval("[Forms]![Config_frm]![ConfigDetailsSub_frm].Form!txtEffectiveDate Is Not Null")) Then

Part and Inventory Search

Back
Top