Search results

  1. W

    Parameter query?

    I'm not sure if a parameter query will do this (only type I know). I have a db with field plants: and field: reject number. I want to create a report that will count reject number seperated by plant. How would you accomplish this?
  2. W

    Parameter value

    I have a report, which is based on a parameter query, which asks for the starting & ending date. Is there a way to put the the parameter (start/end date) on the report somewhere?
  3. W

    Parameters Queries

    When using a parameter query, is there a way to hide the "Enter a Parameter Value" on top of the dialog box"?
  4. W

    Trying to eliminate Redundancy

    I have a home made switchboard with command buttons that ask for a "enter beginning & ending dates", if the person hits cancel access displays some error message. I have some error code to eliminate the 2501 error. But it seems like i have to add the lines of code for each command button and...
  5. W

    Counting in reports

    That didn't work but adding an event to the report, NO data did. Private Sub Report_NoData(Cancel As Integer) MsgBox "There aren't any records to display, try another date!" DoCmd.Close acForm, "Dock Audit Discrepancy Report" Cancel = True End Sub
  6. W

    Display Zero if Field IsNull

    I tried this, on a report that is not running off a query, and I still get 1.
  7. W

    Counting in reports

    It looks like it would work, but it doesn't; it can't find recordcount
  8. W

    Counting in reports

    I have a textbox called recordcount, control source =1, and running sum is set to overgroup. In the report footer I have a text box which is set to count the number. There is no query. The control Source is =([recordcount]). This works as long as there is data, but as soon as there is no data...
  9. W

    calculated fields

    Point! I've scrapped that idea.
  10. W

    Login form sample

    This is how I did mine, I created a popup form and put it in the startup. There are two fields txtUserName & txtPassword and 2 command buttons, cmdOk and cmdcancel Sub NoEntry() MsgBox "User name or password is incorrect", vbInformation, "Cannot Open!" DoCmd.Close Private Sub...
  11. W

    calculated fields

    I no, you shouldn’t store calculated fields in a table, but rather on the fly, but I need the data. I have a table w/3 fields tot_audits, TOT_DISCREP & INFORMANCE (which is =1-([TOT_DISCREP]/[TOT_AUDITS]), but I can’t get it to store in the table, from a form. I tried using the afterupdate event...
  12. W

    Loops in SendObject command

    Thanks a MILLION, it works like a charm. I'm thinking of naming my first born Stoner!
  13. W

    Loops in SendObject command

    I'm really stuck. I have a form which I have set up a cmdbutton. There are 3 different thing that can occured, an approval (check mark), a reject (check mark) or an interim (check mark). I would like the user to click the command button, and if the part check mark is approved, it would send a...
  14. W

    No Records

    I have a form, that control source is a parameter query. The query asks for a report no. So if the user, hits return, or ok, the form opens to a blank record. How would I change this to say "No records found, please reenter the number". I've played with the OnError event, and the user can still...
  15. W

    Parameter Queries

    I use paramter queries quite a bit, how do you change the title bar of the query the "ENTER A PARAMETER VALUE" to something else?
Back
Top Bottom