Search results

  1. S

    Solved Open Form on double click

    No. Lets suppose Client ID = 1001 Matter ID is = 1
  2. S

    Solved Open Form on double click

    Dear All Double click on list box I am trying to open a form for particular record. Although form gets open but without any data (blank). I am using the following code: Private Sub lstMatter_DblClick(Cancel As Integer) DoCmd.OpenForm "frmClientMatter", , , "[ClientID]=" & Me.lstMatter & " and...
  3. S

    Open a form based on meeting two criteria ID

    Thank you so much it works fine.
  4. S

    Open a form based on meeting two criteria ID

    Hi All I am trying to open a form with following code: DoCmd.OpenForm "frmClientMatter" ,,,"[ClientID]=" & Me. ClientID &"'"& and "[MatterID]=" & Me.MatterID But code does not work. Any help suggestion will be much appreciated. A Munir Please note both (ClientID and MatterID) are numeric...
  5. S

    Syntax error on date field

    Many hanks
  6. S

    Syntax error on date field

    Many thanks
  7. S

    Syntax error on date field

    Thank you for your reply. Can you please point where exactly closing is missing?
  8. S

    Syntax error on date field

    Thank you for your reply. Format requirement is dd/mm/yyyy.
  9. S

    Syntax error on date field

    Hi All I am trying the following line of code: strCriteria = "[MatterDate] Between " & Format(Me.txtDateFrom, "\#dd\/mm\/yyyy\#) & " And " & Format(Me.txtDateTo, "\#dd\/mm\/yyyy\#") But getting Syntax error message. Will much appreciate if someone can help to to sort it out. Many thanks
  10. S

    Solved Filter the form based on value selected from Combo Box

    Thank you very much for your suggestion.
  11. S

    Solved Filter the form based on value selected from Combo Box

    Thank you very much that is exactly what I want. You are great
  12. S

    Solved Filter the form based on value selected from Combo Box

    Hi All I am trying to display/show records on my continuous form based on the value selected from combo box. However, when I run the form and click on combo box first it asks me for parameter value and then shows that value in combo box instead of showing Customer Type. When I select each value...
  13. S

    How to display logged in user Name and Role on main form from a table

    You are absolutely spot on “ laptop without a login”
  14. S

    How to display logged in user Name and Role on main form from a table

    I am getting current date 17/11/2020
  15. S

    How to display logged in user Name and Role on main form from a table

    No using my laptop at home
  16. S

    How to display logged in user Name and Role on main form from a table

    Just tried it and getting this error (#Name?)
  17. S

    How to display logged in user Name and Role on main form from a table

    Hi All I have a users table in access which holds user’s login name, password, and user type like(Administrator, data entry etc...). What I want to achieve is to display current ms access user’s login name and user type on my main. I tried (=get current user()) but it returns widow login user...
  18. S

    Filtering List Box Alphabetically

    I did exactly what you said and it is working fine now. Many thanks
  19. S

    Filtering List Box Alphabetically

    Thank you so much. I did what you told and it is working fine now, once again thank you for your help I learned a lot with your help.
  20. S

    Filtering List Box Alphabetically

    I am thankful to both of you and @Gasman for your help. Although I can use the list box form you have amended/corrected for me, however for the sake of my own knowledge and learning I made changes in my original form based on your recommendations and correction. Unfortunately, I am not getting...
Back
Top Bottom