Recent content by SlepyJack

  1. S

    Quick question - TreeView Control - maximum records

    Has treeview control limited maximum of records ? I know that has, but I need the number of maximum record.
  2. S

    Disable submenu Menu-Menu1-Function2

    Yes ! Thank you for your Help.
  3. S

    Disable submenu Menu-Menu1-Function2

    I created menu: Private Sub CreateMenu() Dim MenuCb As CommandBar: Dim MenuCbc As CommandBarControl: Dim MenuCmcp As CommandBarControl 'Main Menu Bar Set MenuCb = Application.CommandBars.Add("MyMenu", msoBarTop, True, False) 'Menu of Main Menu Bar Set MenuCbc =...
  4. S

    Number of users

    How can I get number of users (by VB code) which have curently open my database (database.mdb). (But not by reading *.ldb file.) I want not allow to user open (or changing data) database, if five users have the database open. Thanks :cool:
  5. S

    Changed tree node

    YES I found it. Private Sub MyTree_AfterLabelEdit(Cancel As Integer, NewString As String) MsgBox "AfterLabelEdit" End Sub Private Sub MyTree_BeforeLabelEdit(Cancel As Integer) MsgBox "BeforeLabelEdit" End Sub
  6. S

    Changed tree node

    Hi I need to know how to save to database changed tree node. I hope somebody help me.
Back
Top Bottom