Changeset 785
- Timestamp:
- Aug 8, 2013, 10:27:45 AM (12 years ago)
- Location:
- trunk/guitools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/guitools/shared/smbtree.vrs
r784 r785 628 628 interpret dyn 629 629 ok = stream(msgfile,'c','close') 630 /* if delMsgFile <> "NODEL" then ok = SysFileDelete(msgfile) */630 if delMsgFile <> "NODEL" then ok = SysFileDelete(msgfile) 631 631 632 632 drop msgfile msgstem -
trunk/guitools/smbmon/smbmon.vrp
r784 r785 8 8 VRXWindow: __VREMainWindow,1,2180,3614,1024,6769 9 9 VRXWindow: __VRESectionListWindow,1,4083,11226,7372,6589 10 VRXWindow: __VREToolsWindow,1,2156,1494, 4968,166510 VRXWindow: __VREToolsWindow,1,2156,1494,5471,1659 11 11 VRXWindow: __VREWindListWindow,1,964,11708,3132,3150 12 12 UserFile: 1 -
trunk/guitools/smbmon/smbmon.vrx
r784 r785 1125 1125 _TabbedDialogSetup: 1126 1126 IF options.!debug == 1 THEN SAY time()' _TabbedDialogSetup started' 1127 w = VRLoad( "TDL_1", VRWindowPath(), "SW_DAEMONS" ) 1128 ok = VRMethod( "TDL_1", "InsertPage", w,"+ "NLVGetMessage(18)" ") 1129 1130 w = VRLoad( "TDL_1", VRWindowPath(), "SW_SMBTREE" ) 1131 ok = VRMethod( "TDL_1", "InsertPage", w,"+ "NLVGetMessage(19)" ") 1132 1127 1133 w = VRLoad( "TDL_1", VRWindowPath(), "SW_USERS" ) 1128 1134 ok = VRMethod( "TDL_1", "InsertPage", w,"+ "NLVGetMessage(15)" ") … … 1133 1139 w = VRLoad( "TDL_1", VRWindowPath(), "SW_SERVICE" ) 1134 1140 ok = VRMethod( "TDL_1", "InsertPage", w,"+ "NLVGetMessage(17)" ") 1135 1136 w = VRLoad( "TDL_1", VRWindowPath(), "SW_DAEMONS" )1137 ok = VRMethod( "TDL_1", "InsertPage", w,"+ "NLVGetMessage(18)" ")1138 1139 w = VRLoad( "TDL_1", VRWindowPath(), "SW_SMBTREE" )1140 ok = VRMethod( "TDL_1", "InsertPage", w,"+ "NLVGetMessage(19)" ")1141 1141 1142 1142 w = VRLoad( "TDL_1", VRWindowPath(), "SW_SETTINGS" ) … … 1992 1992 say " CurrentPageNr = "CurrentPageNr 1993 1993 1994 if CurrentPageNr = 5then do1994 if CurrentPageNr = 2 then do 1995 1995 ok = VRset("Pict_Throbber", "Visible", 1) 1996 1996 ok = VRset("TM_Throbber", "Enabled", 1) … … 2428 2428 ok = VRSet("DT_STATUSBAR","Caption", VRGet("Main", "HintText")) 2429 2429 /* call _TabsStrip */ 2430 select 2431 when page = 1 then do /* Users */ 2432 nop 2433 end 2434 when page = 2 then do /* files */ 2435 nop 2436 end 2437 when page = 3 then do /* service */ 2438 nop 2439 end 2440 when page = 4 then do /* daemons */ 2430 select 2431 when page = 1 then do /* daemons */ 2441 2432 ok = VRSet("TM_RefreshDaemons","Enabled", 1) 2442 2433 ok = VRSet("TM_RefreshDaemons","Delay", 3000) 2443 2434 end 2444 when page = 5then do /* smbtree */2435 when page = 2 then do /* smbtree */ 2445 2436 ok = VRMethod( "CN_SMBTree", "GetRecordList", "All", "handle." ) 2446 2437 /* if the page is empty, populate it */ 2447 2438 if handle.0 = 0 then call PB_Refresh_Click 2439 end 2440 when page = 3 then do /* Users */ 2441 nop 2442 end 2443 when page = 4 then do /* files */ 2444 nop 2445 end 2446 when page = 5 then do /* service */ 2447 nop 2448 2448 end 2449 2449 when page = 6 then do /* Settings */
Note:
See TracChangeset
for help on using the changeset viewer.