Search results

  1. HASAN-1993

    Vba access passing the table name with variables

    Passing the table name with variables. I have Query. I do it from the Query builder itself, not from Visual Basic Editor. But I want to pass the table name from a variable or from a module. Does anyone have an idea?
  2. HASAN-1993

    Solved prevent the user from showing the hidden fields

    I have a SubForm in some cases my code hides some fields (MyTextBox.ColumnHidden = True), but when the user tries to expand it, he can
  3. HASAN-1993

    Solved ShortCut Menu .OnAction

    How Can I Call Function On The Same Form .OnAction = "UnitePrice" .OnAction = "=UnitePrice" .OnAction = "=UnitePrice()" .OnAction = "MainForm.UnitePrice()" All of these did not work It only works from the main module page
  4. HASAN-1993

    Instance Of Same Form

    I have a form for entering an invoice, but in a very professional way But what I want is to open this form multiple times at the same time This form contains Subform. When I Create multiple instances of a form, it is inserted in the same Subform. Is there a solution to this problem? In addition...
  5. HASAN-1993

    Know the children of an account in the account tree by vba or query

    Hello all I want to know the children of an account in the account tree I have attached a picture on the topic I have a table and I want to extract from it the children of a specific account. Is there a way through the vba or sql? Thanx
  6. HASAN-1993

    Is it possible to create a recursive sum in ms access by sql query or vba

    i have table like>> Parent_ID Acc_ID value 0 1 0 1 13 1 13 121 1 121 121001 1 0 2 0 2 23 1 23 131 1 131 131001 1 The output I want Parent_ID Acc_ID Value 0 1 3 1 13 3 13 121 2 121 121001 1 0 2 3 2 23 3 23 131 2 131 131001 1 What I want is unlimeted...
Top Bottom