Search results

  1. DHookom

    Clear out data

    If you don't have certain tables, can you provide some clue as to what causes you to have hundreds and why they are growing. Do any of your tables have similar structures? Help us understand what you have created.
  2. DHookom

    Solved Getting old :-(

    I would use code like: Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) Me.Last_Name.FontBold = Not IsNull(Me.DateOfDeath) End Sub
  3. DHookom

    Using multiple criteria in IIF statement

    I replied from my iPad and expected the OP to give it a try and come back with questions. Creating a function allows you to encapsulate the logic into a single object that can be used over and over within an application. If/when the logic changes, you have one place to look. Here is a...
  4. DHookom

    Using multiple criteria in IIF statement

    Create a small used-defined function that has the three fields as arguments. The function will provide comments and easily understood and updatable logic. Nested iif()s should be avoided.
  5. DHookom

    Solved Getting old :-(

    If you feel a pain in your chest (even if for just 5 seconds), don’t ignore it. The same is true for other symptoms.
  6. DHookom

    Solved Getting old :-(

    👈 As per my image, my heart stopped (sudden cardiac arrest) two years ago at age 69. I can verify, getting old is better than the alternative. I now have a valid reason for lapses in memory. I recommend a coronary calcium scan for people over 60 particularly if you experience any heart related...
  7. DHookom

    Multi Value Combobox

    Does MySQL support MVFs? I believe there is a recent thread in the Forms forum discussing this functionality.
  8. DHookom

    Date format mm/yyyy

    Have you tried creating an additional column with the field in the Format() function? DateMMYYYY: Format([DateField], "mm/yyyy")
  9. DHookom

    Sorry folks, Access World will not accept my posts

    I don’t know about others but I think this thread has run its course (and then some). This should have been posted in the Site Suggestions forum. This is similar to the great idea to create a new thread regarding MVFs.
  10. DHookom

    Sorry folks, Access World will not accept my posts

    Hi Joan. Welcome to AWF. I assume you are the famous Joan Wild, former MVP!
  11. DHookom

    Sorry folks, Access World will not accept my posts

    If you haven't split out the data tables from the other objects, how do you intend to provide updates to your users? When you send them a new application, it will overwrite everything they have added in terms of records? Is your application read-only? On a side note, it seems like a waste of...
  12. DHookom

    Sorry folks, Access World will not accept my posts

    I don’t believe @DakotaRidge has ever stated the full contents of what is contained in the post. Was there an attachment, image, link, script,…?
  13. DHookom

    Clear out data

    This is the 79th post in this thread which should have moved to the Watercooler 70 posts ago.
  14. DHookom

    Sorry folks, Access World will not accept my posts

    I was a Microsoft MVP for 15 years, consider many here as personal friends, and have been contributing to these types of forums for over 20 years and I had to patiently (not really) wait for my 100th post.
  15. DHookom

    Sorry folks, Access World will not accept my posts

    There are specific rules defined in this forum that don't allow some types of content in posts from participants with less than 100 posts. I recall watching my post count grow to 100 so I had full rights.
  16. DHookom

    New Here

    Great to see you here Ken.
  17. DHookom

    Sorry folks, Access World will not accept my posts

    @Woodpecker has had less than 40 posts.
  18. DHookom

    I need help. How can I display the Total Amount and Net Amount on the main form? I am not able to do it. Please help.

    Place a text box in the subform header with these properties Name: txtAmtTotal Control Source: =Sum([UnitPrice]*[Quantity]-Nz([Discount],0)) Then change the text box on your main form to: Control Source: =[SaleDetails].[Form].[txtAmtTotal]
  19. DHookom

    Sorry folks, Access World will not accept my posts

    Can you take a screen shot of your error message or is that prohibited also? We can't see your screen.
  20. DHookom

    Sorry folks, Access World will not accept my posts

    I believe the number of posts required is/was 100.
Back
Top Bottom