Search results

  1. S

    Count/sum of records in query

    Hi, I want to create a query that will show the total number recordsthat have a specific methods. For example see photo. I have multiple number of Project with the same name but the methods are sometimes differs and sometimes the same. I know in the query I have to Group the Projects together...
  2. S

    Calendar object at parameter value box

    I think my brain just froze when I see the codes in the example. But I will keep it for my future reference, in case I will encounter the same problem (I bet I will face the same problem). Thank you ridders!
  3. S

    Error 3044 - isn't a valid path

    I see. Thank you. May I also know where should I paste the code? Just in case you know where.. Because I am an intern here and I have no access to Home-Office, so I couldn't test the error and debugged it. Also, the colleages are from another location far from here so I can't just peek into his...
  4. S

    Error 3044 - isn't a valid path

    Alright. That means there is no rigid solution to it isn't it? Just do not open the database without the network, right?
  5. S

    Error 3044 - isn't a valid path

    My colleage got an Error message when starting the Databank. Error 3044: 'O:\...\AccessBE' isn't a Valid Path. Make Sure that the Path Name is Spelled Correctly and that you are Connected to the Server on which the File Resides. He said that he is working via Home-Office and during opening of...
  6. S

    Combo box selection disrupting search box functionality

    Maybe you can add.. ComboWSIB.value = 0 CboPrograms.value = 0 ..at the end of your searchbox code. So that when you started typing in the searchbox, the filter in the combobox will be reseted.
  7. S

    Calendar object at parameter value box

    Minty you're the bomb! For the parameter criteria, I actually used [Forms]! but I don't know why it automatically came out as [Formulare]!. I used the Expression Builder instead of typing it manually and it works perfectly now. Funny thing is, what I typed in and what the Expression Builder...
  8. S

    Calendar object at parameter value box

    Thank you ridders for your reply. I have looked at the example but it is quite complicated for me to do. But I will try it when nothing else works. Minty, I have tried your suggestion but it still ask for another parameter. See photo. As you can see in the photo, the textbox for dates is named...
  9. S

    Calendar object at parameter value box

    Thank you for your reply. Okay I did a small form with a 'Set' button but how do I connect it with the query? Can I change the codes above to the codes below? SELECT tbl....... FROM tbl...... WHERE (((tblBill.datDiscussion)>(tblDatePicker.datStart) And...
  10. S

    Calendar object at parameter value box

    Hi, does anybody know how do I insert a calendar date-picker at a parameter value input box? See picture. I have a query that will filter records between the given Start date and End date. Right now I have to manually type in the dates whenever I need to use the query but now I would like to...
  11. S

    Changing subform background colour

    Hi, how do I make coloured background for each record. See photo. The colour depends on the task assigned on the records. For example, when the task is set to Analysis, it will turn blue, when others, the background is normal. Does it have to do with the following codes? Private Sub...
  12. S

    Saving auto-added Date

    I have a Form A where it displays the dates of the records based on Table A. Then I have a Pop-up Form where I enter some details of the record. There is a textbox where I can enter the date of the record. I am attempting to save the date entered from the Pop-up Form onto the Form A. The...
  13. S

    Impoting/Connect data from a field according to the latest date

    Thank you Orthodox Dave. But may I know where should I put this code? In VBA is it? If so, for which sub?
  14. S

    Impoting/Connect data from a field according to the latest date

    I have a Form with a Subform on it and the subform is showing records in Table Component. I just added a new field on the table, which will show the status colour of the component. The status of the component is taken from another table called Table Component Order. But for each component, there...
  15. S

    Enter parameter value for combobox filter

    The solution lies at reply number #5. Silly me. Thank you Orthodox Dave.
  16. S

    Records in subform duplicated itself

    Found the solution! In the form query at the properties section, just set Duplicate to No. A word 'DISTINCT' will automatically be added next to 'SELECT' in the sql. That's all.
  17. S

    Help with SQL for combobox

    Yes it is working like a charm :) Gonna mark this threas ad solved.
  18. S

    Combobox filter using VBA

    Omg you understand it perfectly and you are absolutely right! The codes works! Thank you very much!! :D
  19. S

    Combobox filter using VBA

    I have a subform that I want to filter using a combobox. The subform query is in the left side of the photo that I have attached and the result that supposed to show up on the subform when I clicked on the combobox is on the right side (in red box). The problem is I couldn't get the subform to...
  20. S

    Combobox filter combine multiple records

    Thank you! I just figured out that I just need to add Grouping in my combobox query. It works now. :)
Back
Top Bottom