Changeset 869 for trunk/guitools/smbmon
- Timestamp:
- Nov 14, 2014, 4:24:27 PM (11 years ago)
- Location:
- trunk/guitools/smbmon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/guitools/smbmon/smbmon.vrp
r837 r869 8 8 VRXWindow: __VREMainWindow,1,2180,3614,1024,6769 9 9 VRXWindow: __VRESectionListWindow,1,4083,11226,7372,6589 10 VRXWindow: __VREToolsWindow,1,2156,1494,54 71,166310 VRXWindow: __VREToolsWindow,1,2156,1494,5468,1669 11 11 VRXWindow: __VREWindListWindow,1,964,11708,3132,3150 12 12 UserFile: 1 13 13 UserWindow: Main,1 14 UserWindow: SW_DAEMONS,115 UserWindow: SW_SETTINGS,1 -
trunk/guitools/smbmon/smbmon.vrx
r837 r869 751 751 say 'Refreshcrash "'max(length(Rest)-25)'"' 752 752 753 Name = strip(left(Rest,max(length(Rest)-25 ),1))753 Name = strip(left(Rest,max(length(Rest)-25,1))) 754 754 I = I + 1 755 755 sharepath = strip(translate(left(sharepath,1))||translate(substr(SharePath,2),'\','/'),'T','\') … … 1277 1277 */ 1278 1278 CN_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 1280 1284 else do 1281 say " Record = '"VRInfo("Record")"'"1285 say " Going for context menu, record = '"VRInfo("Record")"'" 1282 1286 1283 1287 call _RefreshDaemonsDelay … … 1332 1336 end 1333 1337 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 1334 1349 ok = VRMethod( "ContextMenu_Daemons", "Popup", , , "", "" ) 1335 1350 end 1351 IF options.!debug == 1 THEN SAY time()' CN_Daemons_ContextMenu() done' 1336 1352 return 1337 1353 … … 1491 1507 */ 1492 1508 ContextMenu_Daemons_Details_Click: 1509 IF options.!debug == 1 THEN SAY time()' ContextMenu_Daemons_Tree_Click() started' 1493 1510 ok = VRset("CN_Daemons","View","Detail") 1494 1511 ok = VRset("ContextMenu_Daemons_Tree","Enabled",1) 1495 1512 ok = VRset("ContextMenu_Daemons_Details","Enabled",0) 1496 1513 ok = VRSet("TM_refresh","Enabled", 1) 1514 IF options.!debug == 1 THEN SAY time()' ContextMenu_Daemons_Tree_Click() done' 1497 1515 return 1498 1516 … … 1566 1584 */ 1567 1585 ContextMenu_Daemons_Tree_Click: 1586 IF options.!debug == 1 THEN SAY time()' ContextMenu_Daemons_Tree_Click() started' 1568 1587 ok = VRset("CN_Daemons","View","IconTree") 1569 1588 ok = VRset("ContextMenu_Daemons_Tree","Enabled",0) 1570 1589 ok = VRset("ContextMenu_Daemons_Details","Enabled",1) 1571 1590 ok = VRSet("TM_refresh","Enabled", 1) 1591 IF options.!debug == 1 THEN SAY time()' ContextMenu_Daemons_Tree_Click() done' 1572 1592 return 1573 1593 … … 1732 1752 */ 1733 1753 Main_Create: 1734 options.!debug = 11754 options.!debug = 0 1735 1755 if options.!debug == 1 then do 1736 1756 ok = VRRedirectStdIO("ON")
Note:
See TracChangeset
for help on using the changeset viewer.