Recent content by arnelgp

  1. 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...
  2. 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
  3. 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.
  4. arnelgp

    Date format reverts back to previous format

    you can also use the ISO 8601 standard date format: YYYY-MM-DD.
  5. 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).
  6. 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.
  7. arnelgp

    Date format reverts back to previous format

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

    Date format reverts back to previous format

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

    Solved Code running report despite default set to not

    maybe your db apps get Stoned:sick:
  10. 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
  11. arnelgp

    Solved Report resolution fix, maybe

    can't you manually Default printer to print on 600x600 resolution. i think you can.
  12. arnelgp

    How Sql Server can interact with Microsoft Access (or other application) ?

    from Copilot answer. you can add "trigger" to your sql server when a record is modified or added. like creating a record on the audit trail table on your sql server. on ms access part, again from CoPilot: MS SQL Server cannot directly “push” notifications into Access when a linked table...
  13. arnelgp

    Rotate an image

    vhung see the two new form.
  14. arnelgp

    Currency from US$ to GBP

    you can also Save the Current Exchange rate of US$ to GBP to your table. then using Query, you can Compute the Conversion of each field.
Back
Top Bottom