Recent content by arnelgp

  1. arnelgp

    Microsoft’s “Premier” Mix-Up: A Tale of Access and Amnesia

    what is it? another end is near and so i face..
  2. arnelgp

    Restoring the position of the Detail section of a form after adding multiple controls

    can you use webbrowser control? see sample db in post #12 of this thread: https://www.access-programmers.co.uk/forums/threads/access-product-catalogue-website-style.333196/
  3. arnelgp

    ow to print a tree view

    i also tested my code before posting and it does work, just for clarification.
  4. arnelgp

    Output data from tables into a directory or phonebook

    SELECT tblHousehold.ID_Household, tblHousehold.[Family Surname] AS [Household Name], tblHousehold.[Family Address] AS [Household Address], tblHousehold.[Family Phone] AS [Household Phone], (select top 1 Person_First From tblPersonal Where ID_Household = tblHousehold.ID_Household And...
  5. arnelgp

    ow to print a tree view

    maybe change the function to: Function GetTreeViewText(tv As Object) As String Dim treeText As String Dim node As node .. .. .. end function
  6. arnelgp

    Date format reverts back to previous format

    Date format is not an issue. the problem are those people, not having guidance as to the Basics of Ms Access. It is a good advice to Read the Manual first before you try to Operate.
  7. arnelgp

    Date format reverts back to previous format

    you can also use the ISO 8601 standard date format: YYYY-MM-DD.
  8. arnelgp

    Combo in subform display the previous value

    the subform's table should also the Sales/Invoice ID, so that you can Link it to the main form (Link Master Fields/Link Child Fields).
  9. arnelgp

    Date format reverts back to previous format

    the OP can "hard" set the format by going to control panel and change the Loale date setting.
  10. arnelgp

    Date format reverts back to previous format

    is it so hard, considering he is the programmer?
  11. arnelgp

    Date format reverts back to previous format

    add also the Format (Property) of the data textbox in design view.
  12. arnelgp

    Solved Code running report despite default set to not

    maybe your db apps get Stoned:sick:
  13. arnelgp

    Solved How get lid of domain function and replace them with opening recordset in MS Access VBA

    alternative use tLookup() and other domain lookup alternative: https://www.access-programmers.co.uk/forums/threads/replace-dlookup-with-as-sql-query.319710/#post-1787342
  14. arnelgp

    Solved Report resolution fix, maybe

    can't you manually Default printer to print on 600x600 resolution. i think you can.
Back
Top Bottom