Changeset 869 for trunk/guitools/smbmon


Ignore:
Timestamp:
Nov 14, 2014, 4:24:27 PM (11 years ago)
Author:
Herwig Bauernfeind
Message:

GUITools: EVFSGUI (Ticket #230,#233), SMBMon, shared library updates

Location:
trunk/guitools/smbmon
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/guitools/smbmon/smbmon.vrp

    r837 r869  
    88VRXWindow: __VREMainWindow,1,2180,3614,1024,6769
    99VRXWindow: __VRESectionListWindow,1,4083,11226,7372,6589
    10 VRXWindow: __VREToolsWindow,1,2156,1494,5471,1663
     10VRXWindow: __VREToolsWindow,1,2156,1494,5468,1669
    1111VRXWindow: __VREWindListWindow,1,964,11708,3132,3150
    1212UserFile: 1
    1313UserWindow: Main,1
    14 UserWindow: SW_DAEMONS,1
    15 UserWindow: SW_SETTINGS,1
  • trunk/guitools/smbmon/smbmon.vrx

    r837 r869  
    751751say 'Refreshcrash "'max(length(Rest)-25)'"'
    752752
    753         Name = strip(left(Rest,max(length(Rest)-25),1))
     753        Name = strip(left(Rest,max(length(Rest)-25,1)))
    754754        I = I + 1
    755755        sharepath = strip(translate(left(sharepath,1))||translate(substr(SharePath,2),'\','/'),'T','\')
     
    12771277*/
    12781278CN_Daemons_ContextMenu:
    1279     if VRInfo("Top") < 400 & VRGet("CN_Daemons", "View") = "Detail" then call _ColumnsMenu "CN_Daemons"
     1279    IF options.!debug == 1 THEN SAY time()' CN_Daemons_ContextMenu() started'
     1280    if VRInfo("Top") < 400 & VRGet("CN_Daemons", "View") = "Detail" then do
     1281        say "  Going for column modification..."
     1282        call _ColumnsMenu "CN_Daemons"
     1283    end
    12801284    else do
    1281         say "  Record = '"VRInfo("Record")"'"
     1285        say "  Going for context menu, record = '"VRInfo("Record")"'"
    12821286
    12831287        call _RefreshDaemonsDelay
     
    13321336        end
    13331337        say '  Daemon is "'DaemonName'"'
     1338        say '  DaemonView = "'DaemonView'"'
     1339        if VRGet("CN_Daemons","View") = "Detail" then do
     1340            ok = VRSet("ContextMenu_Daemons_Details", "Enabled", 0)
     1341            ok = VRSet("ContextMenu_Daemons_Tree", "Enabled", 1)
     1342        end
     1343        else do
     1344            ok = VRSet("ContextMenu_Daemons_Details", "Enabled", 1)
     1345            ok = VRSet("ContextMenu_Daemons_Tree", "Enabled", 0)
     1346        end
     1347        DaemonView = VRGet("CN_Daemons","View")
     1348
    13341349        ok = VRMethod( "ContextMenu_Daemons", "Popup", , , "", "" )
    13351350    end
     1351    IF options.!debug == 1 THEN SAY time()' CN_Daemons_ContextMenu() done'
    13361352return
    13371353
     
    14911507*/
    14921508ContextMenu_Daemons_Details_Click:
     1509    IF options.!debug == 1 THEN SAY time()' ContextMenu_Daemons_Tree_Click() started'
    14931510    ok = VRset("CN_Daemons","View","Detail")
    14941511    ok = VRset("ContextMenu_Daemons_Tree","Enabled",1)
    14951512    ok = VRset("ContextMenu_Daemons_Details","Enabled",0)
    14961513    ok = VRSet("TM_refresh","Enabled", 1)
     1514    IF options.!debug == 1 THEN SAY time()' ContextMenu_Daemons_Tree_Click() done'
    14971515return
    14981516
     
    15661584*/
    15671585ContextMenu_Daemons_Tree_Click:
     1586    IF options.!debug == 1 THEN SAY time()' ContextMenu_Daemons_Tree_Click() started'
    15681587    ok = VRset("CN_Daemons","View","IconTree")
    15691588    ok = VRset("ContextMenu_Daemons_Tree","Enabled",0)
    15701589    ok = VRset("ContextMenu_Daemons_Details","Enabled",1)
    15711590    ok = VRSet("TM_refresh","Enabled", 1)
     1591    IF options.!debug == 1 THEN SAY time()' ContextMenu_Daemons_Tree_Click() done'
    15721592return
    15731593
     
    17321752*/
    17331753Main_Create:
    1734     options.!debug    = 1
     1754    options.!debug    = 0
    17351755    if options.!debug == 1 then do
    17361756        ok = VRRedirectStdIO("ON")
Note: See TracChangeset for help on using the changeset viewer.