Search results

  1. P

    Null vs New Record

    You are the man! I was beating my head against a wall until I read this... If Me.txtField.Value = "" Then The above apparently doesn't work correctly. Huh. Thanks!
  2. P

    Apply DoCmd.SearchForRecord on Seperate Form

    I have a form that's recourdsource lists all available classes and has a button that opens a "pop-up" modal form. When a new class is added in the modal pop-up form, they click a "Save Button". I want that button to essentially run the following command on the original form but I'm not sure...
  3. P

    Best Way to Loop Through and Close Certain Forms

    Nope, just wanting to close several forms. I guess I've always had a hard time writing in code that executes without condition. Knowing that Access will just process w/o error means I'll just add that in there now. I guess I was over analyzing this one. But that's why all you nice folks are...
  4. P

    Best Way to Loop Through and Close Certain Forms

    I'm using the following piece of code air code. How would I change this to loop through and close certain forms if they are open. I would you an If ElseIf, but I need each statement to be evaluated so that if multiple forms are open, each one that I specify will be closed. Select Case...
  5. P

    Update Query Criteria

    Got it. I have AutoNumber Id's for all tables, so having multiple entries with the joins should still show correctly. I'll do some testing however to ensure. Thanks!
  6. P

    Update Query Criteria

    Actually I think I figured it out. Change the Do and DoNot Graduate queries to non-totals queries or just select queries seemed to fix the problem. Was there a reason behind using the Totals queries? Thanks.
  7. P

    Automate Access to Send Emails and Receive Responses with Outlook

    Well at first glance it appears that I've found the Property "VotingOptions" and "VotingResponse" for use with the Outlook.MailItem There's a good start. I'll just edit this thread as I go with more info for others/help for me.
  8. P

    Update Query Criteria

    You bet. Let me see about zipping up all necessary files (using vPPC and it requires an Access Control DB, Back-End Security DB) in addition to the Front-End/Back-End of my Database. Give me a few hours to strip it down. Thanks a ton!
  9. P

    Automate Access to Send Emails and Receive Responses with Outlook

    Thank you both for your input. I'm going to start attempting to wrap my head around all of this and see what I can't start working out. If only this was the sole feature on my plate I was trying to knock out (Haha, but isn't that always the complaint ... always more to do). I'll see about...
  10. P

    Update Query Criteria

    Alrighty. Here is the SQL for my queries: qryDoNotGraduate SELECT tblFormEight.EnrollmentID, tblFormEight.MailedDate, tblFormEight.ReceivedDate FROM tblFormEight GROUP BY tblFormEight.EnrollmentID, tblFormEight.MailedDate, tblFormEight.ReceivedDate HAVING (((tblFormEight.MailedDate) Is Not...
  11. P

    Automate Access to Send Emails and Receive Responses with Outlook

    Does anyone know how or where I could start to perform the following action: 1. When a particular field has content entered in it and the record is updated, have an email automatically sent through Outlook with the Voting "Yes" or "No" buttons in the email. 2. Then when that email is...
  12. P

    Update Query Criteria

    I am going to give this a shot. I can see the logic in my head now, just wasn't able to come up with it on my own. I'll give it a shot and let you know how it turned out. Thanks for taking the time to type that all up for me!
  13. P

    Update Query Criteria

    The problem is that I can't specify an EnrollmentID on a form control as I want this query to be run everytime the database is opened and check ALL EnrollmentID's to see if ALL Form 8's were marked as received for EACH EnrollmentID. Does that make sense?
  14. P

    Import/Link Outlook Tasks into Access

    I've got this article here, but I'm really lost on how to implement. Could you possibly help point me in the right direction. I've got the following code sorted out. I know it's not in the proper order, it's just what I've gotten copied over so far. Private Sub Outlook() Dim appOutlook As...
  15. P

    Import/Link Outlook Tasks into Access

    So I have tried using the Import Wizard to import/link Outlook Tasks into Access, and it works great except for the fact that it doesn't include the Subject or Message of the task making it completely useless. Does anyone know of a way to read/import/link Outlook 2007 Tasks from within an...
  16. P

    DLookUp in Query Issues

    That's what I thought as well. But when I view the results of thequery I get an #Error in that field and the error: "Data type mismatch in criteria expression" I'm really lost on this one. I can't join those two fields because I get the error : "The SQL statement could not be excuted...
  17. P

    DLookUp in Query Issues

    Can anyone decipher what I'm doing wrong with the following syntax: SELECT tblEnrollment.EnrollmentID, tblEvalTypes.Abbreviation, tblOptionsBF.Abbreviation, tblEvalResults.EvalDate, tblEvalResults.FlightExaminer, DLookUp("[LastName]","tblMembers","[tblMembers].[MemberID]='" &...
  18. P

    Append Query and Nulls

    I could use a little more guidance. Don't think I've ever used a deselect portion of an SQL statement.
  19. P

    Super Snazzy Search Functions Needed

    Yes. You want each criteria to be on the same line. If you have combo box's I feel as if you may need to include some IIF statements that take into account the possibility of a null value. Same with a Radio button or check box.
  20. P

    Super Snazzy Search Functions Needed

    If you can attached your db up here and I'll see about taking a look at it.
Back
Top Bottom