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!

Search results for query: *

  • Users: dgirl1010
  • Content: Threads
  • Order by date
  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

    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!
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. dgirl1010

    OLE Object Erros on subforms

    I have a calendar button that the user can select to choose a date on several of my forms. I'm using VBA to tell the calendar form which date to default to, as well as whcih field to send the selected date to. It works perfectly in all spots except one, where the button is on a subform. I...
  8. dgirl1010

    Enable a button only when form is in acFormAdd?

    I'm fairly new to VBA, and I'm trying to do an If Then statement that will allow a button on my form to becaome enabled only when the form is in data entry mode, acFormAdd, but it doesn't seem to like what I'm doing. Is this even possible? Here's what I've tried: If...

Part and Inventory Search

Back
Top