Search results

  1. arnelgp

    Again, query where dealing with empty fields

    you can also create a Public function in a Module and called it as Criteria on your Query. In a Module paste this: Public Function fnCriteria(ByVal fieldValue As Variant, ByVal txtBoxValue As Variant) As Boolean txtBoxValue = txtBoxValue & "" fieldValue = fieldValue & "" If Trim$(txtBoxValue) =...
  2. arnelgp

    Again, query where dealing with empty fields

    you do this same Criteria with Field02 and Field03: Field01 Criteria: Like "*" & Nz([Forms]![IOListNavForm]![NavigationSubform].[Form]![txtCriteria1], [Field01]) & "*" Field02 Criteria: Like "*" & Nz([Forms]![IOListNavForm]![NavigationSubform].[Form]![txtCriteria2], [Field02]) & "*" Field03...
  3. arnelgp

    Import-export permit tracking system

    cross posted here: https://www.accessforums.net/showthread.php?t=90659
  4. arnelgp

    Positive Test Flagging & Reminders

    cross posted here: https://www.accessforums.net/showthread.php?t=90657
  5. arnelgp

    Again, query where dealing with empty fields

    you can also try (for Field01): Like "*" & Nz([Forms]![IOListNavForm]![NavigationSubform].[Form]![txtCriteria1], [Field01]) & "*" put the same on the other 2 fields.
  6. arnelgp

    Penalties applied according to a table

    do you think there is a missing line on your excel sheet. here is what i get:
  7. arnelgp

    Report Grouping By Year

    fo include all months, do not add filter to the month field.
  8. arnelgp

    Solved No Current Record on Access Close

    can you show us what are the codes in your "delete" button. are there any code you are executing when the db closes?
  9. arnelgp

    Quick question regarding navigating records

    here is another demo. the original code from LPurvis and extended to use separate form for Adding/Editing record. main form is called Products.
  10. arnelgp

    New Member Here

    there is a sample Appointment calendar here: https://www.access-programmers.co.uk/forums/threads/another-simple-appointment-calendar.330020/ which can be modified for sick leave monitoring.
  11. arnelgp

    Solved How to Create Tile-Style Buttons on MS Access Forms?

    what i mean is when you distribute the db, the images are prone for deletion on the client side.
  12. arnelgp

    Solved How to Create Tile-Style Buttons on MS Access Forms?

    not portable and prone for deletion of the images.
  13. arnelgp

    Solved How to Create Tile-Style Buttons on MS Access Forms?

    i think it is propriety, company won't allow.
  14. arnelgp

    Solved How to Create Tile-Style Buttons on MS Access Forms?

    standard icons are small (see again his image on the Tabs), you can't (maybe i am wrong) make them any bigger.
  15. arnelgp

    Solved How to Create Tile-Style Buttons on MS Access Forms?

    sorry, but cross-posted here: https://www.accessforums.net/showthread.php?t=90649
  16. arnelgp

    Solved Insert records where ID combination not already present (JOIN expression not supported)

    plus the Type field, will be the easiest to construct. just cross joins your table.
  17. arnelgp

    Solved How to Create Tile-Style Buttons on MS Access Forms?

    unfortunately, that is not correct. the Imported images are stored in MsysResources. If you already made same buttons before, so what is the point raising your questions? Just to show-off?
  18. arnelgp

    Solved How to Create Tile-Style Buttons on MS Access Forms?

    the button you showed has images not in MS Access so you will import the Images anyway.
  19. arnelgp

    Solved How to Create Tile-Style Buttons on MS Access Forms?

    you can create an Image in photoshop and save it as bmp (png, jpg, etc). and use it as a button. or use the image and Overlay it with transparent button.
  20. arnelgp

    Uber With Guns

    don't be surprised if they drive you away for ransom:(
Back
Top Bottom