Recent content by kostas

  1. K

    View users logged into database MS Access 2016

    Hi @isladogs, Great work so far. Have you implement "Disconnect User" button? How did you approach to this action? And, what if user front end application have linked table from two or more different databases? Thank you for your time.
  2. K

    How to call private sub proc XXXX

    Waz, Take look of this: Global gActive as string ' this variable is deffined in separate module 'code from Form_frmForm1 module: Private Sub cmdOpenForm1_Click() Docmd.OpenForm "frmForm1" ' calls to some other subs and functions gActive=me.cmdOpenForm1.Name End sub 'In the same module i have...
  3. K

    How to call private sub proc XXXX

    Hi, I need some guide. Have Public sub ResetAll() within [form_frmMenu] module. In same module there is many subs and they are all private subs. When user use some cmd.bttn on form [frmMenu] i save bttnName in global variable gActive as string. How to make work this: Public Sub ResetAll()...
Top Bottom