Search results

  1. onur_can

    Hello from the UK!

    Hello Andy, Welcome to our community. I believe you will gain a lot of information experience on access from here.
  2. onur_can

    How to Send WhatsApp MSG From Access 2007 forms ?

    You may not be able to send whatsapp messages directly on the Access form. You can send the message via Whatsapp Web. You can check out the link below for this. Whatsapp Message Send
  3. onur_can

    Open my pc calendar page

    This is the code in ms access vba, Shell "rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,0" You can write this code in the click event of a button in the form.
  4. onur_can

    Summing total values in aform

    What did you write in the formula for the Total Amount field ?, We still need to see the VT example.
  5. onur_can

    Large gap between details and footer

    Use page footer instead of report footer.
  6. onur_can

    Remove first Word or Characters Before " " in Query

    Of course, care should be taken not to use spaces when using domain names. If your field names contain spaces, if you are going to use it in SQL or VBA code, do not forget to enclose it in square brackets. Only in this way can you reach the right result.
  7. onur_can

    This sort of thing pisses me off ...

    Please don't be angry. Stay calm. You cannot think normally when you get angry. (y)
  8. onur_can

    IsDate Function Problem

    What do you mean by simplicity? Many people in a community have different ideas, you take these ideas and simplify them, not the environment!
  9. onur_can

    IsDate Function Problem

    Yes, you are right, Mr. MajP, when I examined it, you provided the solution.
  10. onur_can

    IsDate Function Problem

    When the IsDate function sees any expression that can be converted to a date, it returns True. In your example, August 26th 202 would perceive as a valid date. Because your operating system considers the dates between January 1, 100 and December 31, 9999 valid. For example; IsDate ("October 12...
  11. onur_can

    Hello,

    Hello, Welcome
  12. onur_can

    Hello?

    Welcome Mr MrJoshua
  13. onur_can

    some data not printed from report

    It may not be showing because your height of detail is too high. Bring the detail part to the appropriate height and try it like that.
  14. onur_can

    flicker,flashes form on mouse move event

    Simply perfect! great example thanks arnelgp
  15. onur_can

    Hello

    Hello, always better together, welcome.
  16. onur_can

    Update Values

    In principle, I create a PK that defines or represents that table in all of the tables I have created in all of my projects. Even if a relationship is not established in a table I created, they are a great guide to me when I use the RecordSet or domain community commands from that table from...
  17. onur_can

    Update Values

    The primary key (automatic and unique number) in a table remains constant with its first value, you cannot change this number later. If you could make changes already, it wouldn't be a Primary Key. Instead of changing this, I can show you a way as a solution. Create a new field in the row after...
  18. onur_can

    Dlookup function is not working

    IsNull( Dlookup("DueODue", "Fleet_PMCS", "[CR#] = 'CR50' And Completed = False")) Nz(DLookup("DueODue", "Fleet_PMCS", "[CR#] = 'CR50' And [Completed] = False")) must be such
  19. onur_can

    Hello all!

    Hello ciro548
  20. onur_can

    Incorrect number of records showing in a datasheet form

    glad your problem is resolved!
Back
Top Bottom