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 John Tel 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 ddevil

  1. ddevil

    Form Display Using Tabs

    No visible properties just sorts going on. Any other ideas?
  2. ddevil

    Form Display Using Tabs

    I have a form with three tab controls on it. Each tab control holds a different form, which runs a different query. There is no data to display on the first and second tab, but there is data on the third tab, but all I get is a blank page. The different tabs aren't showing up. If even one...
  3. ddevil

    Syntax to Compare Dates

    I have the following date comparison: If stStat2 = "Open" And Year(stSchedDate) > Today Then do something..... What I really want is if the stSchedDate > the beginning of the month prior to the month we are in. If the stSchedDate was 11/24/2008 then this statement would be true...
  4. ddevil

    Joining Tables to Exclude Records

    Ok, light bulb is on now. That's what I needed. Thanks!
  5. ddevil

    Joining Tables to Exclude Records

    OK, so I have one table called Event_Detail with a field called EventNo. The second table is Events_to_Exclude and a field called EventNo. If I join on the two fields where the EventNo = EventNo, then I only get the records I want to exclude. What I want is to get all the records in...
  6. ddevil

    Joining Tables to Exclude Records

    How do you do that with the graphical tool in Access? I get three choices for joining. Where the fields equal. All from one and only those that equal form the other (either way). I'm sorry this tool confuses me. I get the SQL.
  7. ddevil

    Joining Tables to Exclude Records

    I have a table which contains records that I want to exclude from a query, but I don't see an option in the join criteria to give me all the records in one table except the records that equal from the table with the records I want to exclude. I was thinking I could do a not in in the criteria...
  8. ddevil

    Lock Down Edit on one Form Based on Action from Another

    Great exactly what I needed. Thank you!
  9. ddevil

    Lock Down Edit on one Form Based on Action from Another

    That is correct the form is not open. I have never done what you are suggesting before, can show me some sample code?
  10. ddevil

    Lock Down Edit on one Form Based on Action from Another

    Now I get an error that says Run-time error '2450': Microsoft Office Access can't find the form 'frm_Consultant_Updates' referred to in a macro expression or Visual Basic code. This is the correct name of the form, I doubled checked. Any other ideas, help was no help?
  11. ddevil

    Lock Down Edit on one Form Based on Action from Another

    I want to be able to set the allow edits property on a different form when a button is selected on the current form. The code is below and it runs without error, but when I open the form I'm trying to set, the allow edits property is Yes and not No. Any ideas would be great. Thanks! Private...
  12. ddevil

    Sending Email to Multiple People

    I have another problem with email, please look at the code below. How would I write the in statement for the record set. I just want those with the roleid of 18 and 6 to be emailed, I'm obviously not doing it correctly. Thanks! Private Sub NotifyAM_Click() Dim answer As Integer Dim EmailText...
  13. ddevil

    Sending Email to Multiple People

    That was just too easy, I'm always making it harder that I has to be! Thank you!
  14. ddevil

    Sending Email to Multiple People

    Ok, I created the record set as below, but how do I populate the ToReceiver to send and email to everyone at once, instead of sending individually. So in the TO field I want name@email; name@email;, etc.? My code is below, thanks for your help! Private Sub UpdatesStillNeeded_Click() Dim answer...

Part and Inventory Search

Back
Top