Search results

  1. S

    Create GroupWise Email with Access

    Groupwise email Were you ever able to solve this? I'm looking for anyone that has been able to successfully send an email to groupwise from an access form. Thanks
  2. S

    Disabling a button under certain criteria

    What Finally worked :) If Me!BatchNumber < 1 Or Trim(Me!BatchNumber).Value = "" Then With PeriodEndDate .SetFocus With Me!btnNewKid .Enabled = False End With End With GoTo Exit_btnNewKid_Click Else DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70...
  3. S

    Disabling a button under certain criteria

    I gave it a try but when I try the button on the form it says 'Object is Required' With that table, that is actually a line of code I need to delete but had forgotten it till I sent it out to forums for help this morning. Thanks for pointing it out though. :o
  4. S

    Disabling a button under certain criteria

    In the code below, I want this button to disable if data is missing in the 'batchnumber' text box. The setfocus is because I can't disable a button that has the focus. The problem is the script is apparently ignoring my if and running the else. Can anyone see where I messed up????? :confused...
  5. S

    Last Check Number query problem

    more on Last Check Number query problem tblBatchExport and tblCheckRegister link up by batch number, except that in this scenario the current batch of check hasn't been printed yet so it would be the last check number of the last batch or the last check number in the check register
  6. S

    Last Check Number query problem

    How do I use DMax? Ok, my query is using two tables. tblBatchExport and tblCheckReg BatchNum, BatchRunDate come from the first, CheckNo comes from the last. I want to make a single row table with these three pieces of data. (the table they make is used by Crystal Enterprise to run a series...
  7. S

    Last Check Number query problem

    Part of a query is looking for the last check number in my check register table. I have tried doing it in the Totals row by 'Last', I have tried using criteria last, I have tried a formula in the field using both DLast and Last. Every time I get check numbers 100 to 300 checks back in the...
  8. S

    Problem with Subform Combo filled by query

    The provider/vendor chosed at top of form can have multiple entries for a given batch. When the parent ssn in the subform is filled in, a query runs to find all (unique) children found in tblWarrentHistory matching that ssn. That part works fine on the first subform record and populates the...
Back
Top Bottom