Search results

  1. vhung

    The future of Access

    Increase Accdb file size capacity
  2. vhung

    The future of Access

    nice sir, copy
  3. vhung

    The future of Access

    where to start and how to do it orderly?
  4. vhung

    The future of Access

    hello everyone >my question is? do we have the authority to ask and suggest to "microsoft"/"access" for the satisfaction of access users needs?
  5. vhung

    Browseto macro, is working from one form but not the other form Where clause isn't working

    macro is nice to use >but you could convert that macro command to codes >just try the codes below DoCmd.OpenForm "your_form_name_here", acNormal, "", "[ID]=" & [ID], acEdit, acNormal >i always use these onclick to ID number as hyperlink
  6. vhung

    Solved Accdb: Ribbon and NavigationPane, Unhide/hide

    >use this sample codes for hide command DoCmd.ShowToolbar "Ribbon", acToolbarNo 'Yes or 'No MsgBox "Ribbon, acToolbarNo; NavigationPane OpenNo" CommandBarControl.Visible = False DoCmd.SelectObject acTable, , True DoCmd.RunCommand acCmdWindowHide >no need to restart this time auto...
  7. vhung

    Solved Accdb: Ribbon and NavigationPane, Unhide/hide

    >when you need to open you ribbon and navigation pane >try the codes below DoCmd.SelectObject acTable, , True If Not (objPane Is Nothing) Then objPane.IsCollapsed = False End If DoCmd.ShowToolbar "Ribbon", acToolbarYes 'Yes or 'No MsgBox "Ribbon, acToolbarYes; NavigationPane OpenYes"...
  8. vhung

    Solved Accdb: AllowMenus/ xmenus, edit/unedit

    >for XMenus whereas: command=XMenus; you cannot edit your form using right click, unless you have click button for Form designView [Command Prompt] = "restrt" On Error Resume Next CurrentDb.Properties("AllowFullMenus").Value = False If Err.Number = 3270 Then Set prpNew =...
  9. vhung

    Solved Accdb: AllowMenus/ xmenus, edit/unedit

    >try this codes sometimes ...you can simplfy it, if you apply this codes, you need to restart your open database, so you have to add codes for db auto restart "[Command Prompt] = "restrt" need codes to insert for shutdown and start again, or restart codes, or manual close then open again...
  10. vhung

    datediff between first and last row in subform

    well if that would be, so let it be >i guess yes "recordsets are too small"
  11. vhung

    Solved Actions to take before move to a different record in a form

    thanks for the recognition >good luck with your project
  12. vhung

    Solved Filter continuous form with multiple criteria

    good luck with you project >thanks for the like reaction
  13. vhung

    datediff between first and last row in subform

    several ways to do it >try this way >use query to sql SELECT [PhysicalTherapy].groupyear, First([PhysicalTherapy].sessiondate) AS FirstOfdate, Last([PhysicalTherapy].sessiondate) AS LastOfdate, [LastOfdate]-[FirstOfdate] AS diffdays FROM PhysicalTherapy GROUP BY [PhysicalTherapy].groupyear; >but...
  14. vhung

    Solved Actions to take before move to a different record in a form

    quite hard >address, city, state, and ZIP code. >using "BeforeUpdate" could be possible, where there is 1 field that received your old "address, city, state, and ZIP code" as field1 >could be the other field received your new "address, city, state, and ZIP code "AfterUpdate" as field2 >in a...
  15. vhung

    Solved Acddb: Filter item(s) not on the combo list

    >sample codes, very useful Dim strWhere As String Dim lngLen As Long If Not IsNull(Me.SelectPropertyName) Then strWhere = strWhere & "[PROPERTY TYPE] like ""*" & Me!SelectPropertyName & "*"" AND " End If lngLen = Len(strWhere) - 5 If lngLen <= 0 Then...
  16. vhung

    Solved Filter continuous form with multiple criteria

    wow very prompt >add this to my filter mode Dim strWhere As String Dim lngLen As Long Me.Filter = strWhere Me.FilterOn = True
  17. vhung

    How to set a Textbox in the Footer of Subform to look up text values in a column and choose outcome based on Criteria.

    welcome tammy >express out your vision for sure you shall meet the best result with your own way >thanks for the like response
  18. vhung

    Need advice building a workforce and attendance database

    very important data banking >if for this year you can make SplitTable for that as your server for 2020 attendance >well for 2021 separate SplitTable set on your link table manager, i used this method cause i also have data banking over 10k >on the run your 2020 SplitTable for 2021 is unlinked...
  19. vhung

    Solved Query SUM not summing

    hi nice query run >try the sql of query below SELECT Table1.PartNumber, Sum(Table1.SumOforderedqty) AS SumOfSumOforderedqty, First(Table1.orderdate) AS FirstOforderdate, Table1.PartNumber, Last(Table1.orderdate) AS LastOforderdate, First(Table1.SumOforderedqty) AS FirstOfSumOforderedqty...
  20. vhung

    How to set a Textbox in the Footer of Subform to look up text values in a column and choose outcome based on Criteria.

    quite tough >your field [Line Status] should have a partner fieldname ="CountRecieved" then if [Line Status] = "Received" then [CountRecieved] =1 >with that dataflow [Text35] = Sum([CountRecived]) >try that simple way, i used it with my complex Forms
Back
Top Bottom