Search results

  1. A

    Form not working

    I guess no one is able to help!
  2. A

    Form not working

    Alright, thanks. I have attached the db. The form that I wrote the code for is called frmServiceQualityAssessment. The tables that are related to the evaluation part of this form are tblEvaluation, tblEvaluationWeight and tblComments. What I want the form to do is that whenever checkboxes are...
  3. A

    Form not working

    Any help would be appreciate it. Thanks.
  4. A

    Form not working

    Hi, I've written a VBA code for my evaluation form to add the total. However, it does not work. It does not show me the total as I'm going through the evaluation. Could someone please help me out? This is my code: Option Compare Database Option Explicit Public Const strCYes = "_YES" Public...
  5. A

    Evaluation Form

    Ok can i make the changes and send it back to u to see if I did it right?
  6. A

    Evaluation Form

    Oh ok, but can i put the checkbox yes, no and n/a and do the same thing u did?
  7. A

    Evaluation Form

    Thanks for your help, I really appreciate it. However, I need to have the checkbox yes, no and n/a, I can't just have yes. The form's design requires both yes, no and n/a. I don't quite understand how u did the tables and how it saves this information into the tables.
  8. A

    Evaluation Form

    I'm not sure if u were talking to me but here's my db. The form is called frmServiceQualityAssessment and my tables are called tblEvaluation and tblEvaluationWeight.
  9. A

    Evaluation Form

    I already have my form done and I know how much each question weights but i can't get it to do what it's suppose to. I have two table Evaluation and EvaluationWeight. I've designed a module that will do the evaluation but now i need a query that will take the yes/no/n/a information and put it in...
  10. A

    Error Message

    I tried what u told me but it doesn't work, it gives me an error saying: the expression after update you entered as the event property setting produced the following error: the object you referenced in the VB procedure as an OLE object isn't an OLE Object. This is what i have in the expression...
  11. A

    Error Message

    It works fine now, I changed my query to this: SELECT tblEmployeeInformation.strFullName AS FullName, tblManagerInformation.strManagerFullName AS TLFullName, tblEmployeeInformation.strPhoneNumber FROM tblEmployeeInformation INNER JOIN tblManagerInformation ON tblEmployeeInformation.strManagerID...
  12. A

    Error Message

    I did that and it didn't make any difference. It still doesn't work.
  13. A

    Error Message

    The problem is my query. I tested it w/ another query and it works fine. But I don't know what's wrong w/ it. This is my query: SELECT tblEmployeeInformation.strLastName+', '+tblEmployeeInformation.strFirstName AS FullName, tblManagerInformation.strLastName+'...
  14. A

    Error Message

    Yea i checked all those and everything is fine. I don't know y it's doing that.
  15. A

    Evaluation Form

    Hi, I have a form where it does an assement of the service in the call center. The evaluation form has 3 check boxes (yea, no, n/a). There are 163 employees that need to be evaluated on their performance. How would I go about setting this up? What I've done so far is made a table called...
  16. A

    Error Message

    No i don't think it has to do w/ that because my other form works fine and it doesn't have an on click event.
  17. A

    Error Message

    Does anyone know how i can fix this? It won't let me choose anything it just keeps the drop down and doesn't let me choose it.
  18. A

    Loading data into a Form through Macro/Module

    I fixed the problem, thanks for ur help.
  19. A

    Loading data into a Form through Macro/Module

    There's nothing there. Does this mean I have to recreate the form?
  20. A

    Error Message

    It works perfectly now, thanks man. Question though, now when I go to choose from my list in my combo box i can't select it, it shows me all my list but it doesn't let me choose it.
Back
Top Bottom