Recent content by Belimisimus

  1. B

    Access built-in filter in continuous form

    ...not really, I need option of filtering data by checking the check boxes, something like in datasheet view. Look at the screenshot.
  2. B

    Access built-in filter in continuous form

    Any other suggestion :)
  3. B

    Access built-in filter in continuous form

    Hi! I'm having problem with filtering in continuous form. I'm using only default (built-in) Access filter option and in Continuous form view there is no "triangle" option on the right side of the labels like in Datasheet view. Is there a simple way how to add that option? Thanks in advanced!
  4. B

    Docmd.openform Problem

    Ok i give up for today, thx for your help and time. If nothing else I know in which direction I must go with the further development of a database. Thx again!
  5. B

    Docmd.openform Problem

    Thx for helping me.... :) you can't believe how happy I am to see it's actually working. Only is there a chance how can I preserve Form.RecordSource from load event? See the original code Private Sub Form_Load() If gbl_GrupaID = 2 Then 'Grafika cbo_AssignedTo.Enabled = False...
  6. B

    Docmd.openform Problem

    The same, I have also try this in win7 Office 2010 Beta and the same thing! Are you sure it's working? I see that you have add dbl click code in form1. I want to form1 is open from form 2. Try opening "bbb" or "ccc" task from form Task2 with my code!!!
  7. B

    Docmd.openform Problem

    Thx I'll check, here is the database
  8. B

    Docmd.openform Problem

    I don't think I understand what you mean? To try save record before dbl click "task name" field?
  9. B

    Docmd.openform Problem

    1. This two forms are the simplest form I could make for example. Both have TaskID and Task name and both are related to table "Tasks" 2. I'm not sure how to do that (sorry still learning) but as you say value should be pass 3. Have try, still not working I'm trying this for almost two days...
  10. B

    Docmd.openform Problem

    wow that was fast... 1. Because I have groups of users, who is log in and depend on the group they can have access to some fields. Example: If gbl_GrupaID = 2 Then cbo_AssignedTo.Enabled = False Form.RecordSource = "SELECT Tasks.* FROM Tasks WHERE AssignedTo = " & gbl_ContaktID & ";" 2...
  11. B

    Docmd.openform Problem

    Hello to everyone, hope that someone can help me to find a solution for my problem. I have simple database with one table (TaskID, Task name) and two forms. In first form (Task1) I add on load event code: Private Sub Form_Load() Form.RecordSource = "SELECT Tasks.* FROM Tasks;" End Sub...
Back
Top Bottom