Search results

  1. P

    Access VBA is crashing

    I actually decided to install the 2010 beta version of MSOffice and I seemed to have fixed the problem. When I downgrade back to 2007 we will see if the problem continues. Thanks for all the help.
  2. P

    Access VBA is crashing

    I have yet to add code to the database at all, and even then I stopped running all the codes and still no luck. Bokarinho I am relatively new to access and I don't know what the event viewer is. There are no security issues that I am aware of.
  3. P

    Access VBA is crashing

    Yes, all previous ones, and even new ones I make.
  4. P

    Access VBA is crashing

    Every time I try to type code into the code editor the second it tries to give suggestions as to what I am going to type next, access crashes. Example: When I try to type me.txtName.text it crashes right when I hit the "." after me. I have reinstalled Microsoft Office twice, I have done a...
  5. P

    Employee Schedule w/ Days Off

    I already created an appointment database that only allows a certain amount of appointments a day. If you try to make an appointment on a day that is already full it will give a warning. I am incorporating a days off feature that will allow the manager to pick days that a specific employee is...
  6. P

    Prevent Overbooking Problem

    That worked perfectly. That website was a little vague though. For others with the same problem, Place the code from the website above in a module. Then in the controlsource of the textbox wrap the code in the nnz() tag. Example of control source: =nnz([txtTotal]) Thanks for all the help
  7. P

    Prevent Overbooking Problem

    I am still getting an error Dim overbook As String overbook = Nz(Me.txtTotalBlock, 0) MsgBox (overbook) that is what I have when the user clicks the save button. I am just having it show in a msg to test. I get a run-time error. Right now I have the sum of the column...
  8. P

    Prevent Overbooking Problem

    I am working on a Kennel Database and I am currently working on the Grooming Appointment section. I am having problems giving the user a warning when they are about to overbook for the day. When you are making an appointment you see sub-form that contains a preview of the day the appointment is...
Back
Top Bottom