Recent content by Summit

  1. S

    Question I think I'm way over my head here

    Thank you for your feedback, this is my first serious project. The one I did before was to track uniform marks (in a cadet program) and display that information in graphs, etc all which was navigated through forms. There were some automatical recalls so we could follow up with issues. The...
  2. S

    Question I think I'm way over my head here

    Hi Folks, Haven't posted on here in a while, but I've started my second database, but I think I'm way over my head this time. I'm hoping that someone could let me know if what I'm doing is far beyond my skill level, or even possible in Access (using 2010). I have attached the database incase...
  3. S

    Automatically Email a Person Based on Form Fields

    Alright, awesome. I'll take a look at it later this week. And again, that you very much for the help, I do appreciate your patience, especially since I am new to all of this.
  4. S

    Automatically Email a Person Based on Form Fields

    Yes the query does give the desired information. Below shows the Form that I am talking about, and the query it is based on.
  5. S

    Automatically Email a Person Based on Form Fields

    I'm trying to read that link, I understand some of it, but I don't think I'm wrapping my head around it. If I am reading that correctly, the link is talking about emailing reports. The way I have it set up at the moment, is that an internal database alert pops up on start up if there are...
  6. S

    Automatically Email a Person Based on Form Fields

    Thanks, I'll take a look at that. I am incredibly new to VBA and coding in general. This database (which is my first database) is my first attempt at any sort of coding and I am trying to wrap my head around it.
  7. S

    Error 2585 when closing form

    Perfect, worked like a charm. Thanks!!
  8. S

    Automatically Email a Person Based on Form Fields

    Now from what I've read, I know that Access cannot actually completely automatically email people. If I have to press a button for these emails to go out, that is fine. Basically, a user will enter observations about someone, and there is a field on the form to enter who made the observation...
  9. S

    Error 2585 when closing form

    Thank you very much that worked! How come after update worked and lost focus did not? And one more question. What would the code be for if the password is incorrect, clear the text that was entered into the textbox. And I'm assuming this code would be placed after "else" in the code above.
  10. S

    Error 2585 when closing form

    Hi all, I get this error 2585 This action can't be carried out while processing a form or report event. This happens when I enter a password into my form in order to open any other one. When the password is correct, I want it to open an administrator form, close the form (Main Start) which has...
  11. S

    Little help if you don't mind

    Forgot I had to close another form when the password is correct so that is reflected in the code below. Also I changed Menuboard Password to Menuboard Login. I am still unable to close "Menuboard Login.". Private Sub txtPassword_LostFocus() Dim PassWord As String strPassword = "12345" If...
  12. S

    Little help if you don't mind

    Thank you very much, that code is working almost perfectly. The close form command is not working however (the form to close is actually named Menuboard Password). I'm getting error code 2585. Also, I put the code on event lost focus Private Sub txtPassword_LostFocus() Dim PassWord As String...
  13. S

    Little help if you don't mind

    I just started experimenting with access this year and am still trying to wrap my head around coding so I could use a little help if you don't mind. In my database I have the navigation bar and the ribbon hidden so it looks a little more user friendly for those who use it. I have an...
  14. S

    Filter results in query based on a name from a form

    Ahh ok that makes more sense now. I've also been looking into Sharepoint 2010, and I do have it on my computer. I will do some more research, and I will talk to my coworker and discuss what we want to do. If it becomes too much for me to do, perhaps I'll seek out professional help (do you happen...
  15. S

    Filter results in query based on a name from a form

    Hello, Made it into a web database with a bunch of changes. The new data entry form is not complete as it doesn't actually enter any data yet.
Back
Top Bottom