Recent content by HASAN-1993

  1. HASAN-1993

    Vba access passing the table name with variables

    And how do I make a Windows Service that adjusts the table
  2. HASAN-1993

    Vba access passing the table name with variables

    I honestly don't know because I only work in vba
  3. HASAN-1993

    Vba access passing the table name with variables

    I have a module that I made in the past, and I will send it to you later if you want
  4. HASAN-1993

    Vba access passing the table name with variables

    I thought about this solution, but the problem is that the table (customers online) when there is no internet connection, the query will not work at all
  5. HASAN-1993

    Vba access passing the table name with variables

    Ok. I have a program, the frontend in Vb.net language, and I do not have access, and the backend is ms access, and I have full access. Now the program is calling a query named Customers. All I want is when the program calls this query, is for the query to check a specific condition. If the...
  6. HASAN-1993

    Vba access passing the table name with variables

    As I have already explained, I do not have an option to run the Vba code except when opening the query itself because the program is in another programming language, so if I make a function QueryDef, how will I run it when opening the query
  7. HASAN-1993

    Vba access passing the table name with variables

    Ok, in this case, how can I run the code before opening the query
  8. HASAN-1993

    Vba access passing the table name with variables

    I searched and found out that this solution is not possible The whole idea is that I want Query when opening it, if there is internet, it opens a table, and if not, it opens another, exclusively when opening Query because the program is in another programming language and I do not have access to...
  9. 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?
  10. HASAN-1993

    Solved prevent the user from showing the hidden fields

    Ok now, I no longer have to disable my custom menu thanx
  11. HASAN-1993

    Solved prevent the user from showing the hidden fields

    You are correct, but I used my Custom shortcut menu But the problem was that if the user placed the mouse between the fields and expanded the field, then he can, if you try that, you will know what I say
  12. HASAN-1993

    Solved prevent the user from showing the hidden fields

    After a deep reflection I found the solution to whom it may concern Me.Mytextbox.ColumnHidden = True Me.Mytextbox.Enabled = False Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single) If Me.Mytextbox.Enabled = False Then Me.Mytextbox.ColumnHidden = True End...
  13. HASAN-1993

    Solved prevent the user from showing the hidden fields

    There are several reasons that prevent me from using continuous Form is There a way to use datasheet View
  14. HASAN-1993

    Solved prevent the user from showing the hidden fields

    I tried Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) if me.txtbox.ColumnHidden = true then me.textbox.ColumnHidden = true End If But in this case, I can no longer move any other field
  15. HASAN-1993

    Solved prevent the user from showing the hidden fields

    This option is not possible Because the field can be used if the user chooses this option But there is a condition for it to appear, an error that appears without the condition, so I want to Prevent the user
Top Bottom