Changeset 759
- Timestamp:
- Feb 17, 2013, 4:34:32 PM (12 years ago)
- Location:
- trunk/guitools
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/guitools/evfsgui/changes
r697 r759 1 ToDo for 2.5:2 - Major code refactoring (done, except for old "lowlevel" routines)1 ToDo for 3.0: 2 - Code refactoring for old "lowlevel" routines 3 3 - Enable and complete printer support code 4 4 - Support server based logon scripts (requires REXX rpc library, … … 12 12 - Fix endless loop if neither EVFS nor Netdrive is installed 13 13 under all conditions 14 - Passive connections/double connection detection does not seem15 to work properly16 14 17 Version 2.5.x 2012-??-?? 15 Version 2.5.0 2012-12-?? 16 + Added: Detect eComStation OS Version 18 17 + Added: Show for who we are waiting 19 18 + Added: -timesync switch, allows time sync using commandline … … 59 58 ! Fixed: Do not run nmblookup.exe twice in the foreground 60 59 ! Fixed: Errorhandler for parsing errors in RPC library (still not perfect) 60 ! Fixed: Passive connections/double connection detection does not seem 61 to work properly 62 ! Fixed: Server/share of connections without workgroup were stuffed into the 63 workgroup field errornously (and created a bogus entry in the network 64 neighbourhood) 61 65 - Removed: Bottom button row 62 66 - Removed: View Menu -
trunk/guitools/evfsgui/evfsgui.vrp
r744 r759 15 15 UserFile: 1 16 16 UserWindow: Main,1 17 UserWindow: SW_LOGIN,1 18 UserWindow: SW_INFO,1 19 UserWindow: SW_PORTCONNECT,1 20 UserWindow: SW_SMBTREE,1 21 UserWindow: SW_CONDET,1 22 UserWindow: SW_DIALOG,1 17 UserWindow: SW_SETTINGS,1 -
trunk/guitools/evfsgui/evfsgui.vrx
r744 r759 109 109 110 110 ok = VRMethod( "CN_About", "RemoveRecord", "All" ) 111 112 /* OS Version */ 113 if VRFileExists(SysBootDrive()||"\ECS\ECS_INST.FLG" ) then do 114 OS = linein(SysBootDrive()||"\ECS\ECS_INST.FLG") 115 OS = strip(left(OS,pos(word(OS,4),OS)-1)) 116 ok = stream(SysBootDrive()||"\ECS\ECS_INST.FLG",'c','close') 117 end 118 else OS = "OS/2 Warp/eComStation 1.x" 119 120 DummyRH = VRMethod('CN_About', 'AddRecord') 121 ok = VRMethod("CN_ABOUT", "SetFieldData", DummyRH, About.DscFH, "Operating system", About.ValFH, OS) 111 122 112 123 /* Filesystem version */ … … 747 758 CALL NLVSetText 'PB_EDIT_CANCEL', "Caption", 3 748 759 CALL NLVSetText 'PB_DIALOG_HELP', "Caption", 4 760 CALL NLVSetText 'PB_CLEARCRED', "Caption", 89 749 761 750 762 IF (mtype.1 \= '' & mtype.2 \= '' & mtype.3 \= '' & mtype.4 \= '') THEN DO … … 762 774 CALL NLVSetText 'PB_SMBTREE_REFRESH', "Caption", 38 763 775 CALL NLVSetText 'PB_SMBTREE_HELP', "Caption", 4 776 CALL NLVSetText 'CN_SMBTREE', "Caption", 140 764 777 ok = VRSet("Pict_Throbber","Width", VRMethod( "Screen", "PixelsToTwips", 32 )) 765 778 ok = VRSet("Pict_Throbber","Height", VRMethod( "Screen", "PixelsToTwips", 32 )) … … 950 963 UserCred = _ucGetUc() 951 964 parse var UserCred '--user='Credentials.!username'%'Credentials.!password 965 if left(Credentials.!password,1)='%' then Credentials.!password = substr(Credentials.!password,2) 952 966 ok = VRSet("EF_USER", "Value",Credentials.!username) 953 967 ok = VRSet("EF_PASSWORD","Value",Credentials.!password) … … 1618 1632 credentials.!password = VRGet("EF_PASSWORD","Value") 1619 1633 1620 if pos("4OS2", value("COMSPEC",,"OS2ENVIRONMENT")) = 01634 if pos("4OS2", value("COMSPEC",,"OS2ENVIRONMENT")) = 1 1621 1635 then UserCred = '--user='Credentials.!username'%'Credentials.!password 1622 1636 else UserCred = '--user='Credentials.!username'%%'Credentials.!password … … 2618 2632 */ 2619 2633 Main_Create: 2620 options.!debug = 12634 options.!debug = 0 2621 2635 if options.!debug == 1 then do 2622 2636 ok = VRRedirectStdIO("ON") … … 4613 4627 */ 4614 4628 SW_DIALOG_Init: 4615 ok = VRSet("Pict_PWINMEM","Width", VRMethod( "Screen", "PixelsToTwips", 16 )) 4616 ok = VRSet("Pict_PWINMEM","Height", VRMethod( "Screen", "PixelsToTwips", 16 )) 4629 LEDSize = VRMethod( "Screen", "PixelsToTwips", 16 ) 4630 4631 ok = VRSet("Pict_PWINMEM","Top", VRGet("EF_USER","Top")+(VRGet("EF_USER","Height")-LEDSize)%2) 4632 ok = VRSet("Pict_PWINMEM","Width", LEDSize) 4633 ok = VRSet("Pict_PWINMEM","Height", LEDSize) 4617 4634 return 4618 4635 -
trunk/guitools/evfsgui/mkmsg.cmd
r653 r759 1 1 @echo off 2 rem Edit alle language files3 edit .\rc\lang\evfsi_de.mkm4 edit .\rc\lang\evfsi_en.mkm5 edit .\rc\lang\evfsi_fr.mkm6 edit .\rc\lang\evfsi_it.mkm2 rem edit alle language files 3 call edit .\rc\lang\evfsi_de.mkm 4 call edit .\rc\lang\evfsi_en.mkm 5 call edit .\rc\lang\evfsi_fr.mkm 6 call edit .\rc\lang\evfsi_it.mkm 7 7 rem Build all language files 8 8 mkmsgf .\rc\lang\evfsi_de.mkm evfsi_de.msg -
trunk/guitools/evfsgui/rc/help/evfsi_de.ipf
r653 r759 69 69 wiederherstellt. 70 70 71 :p.:hp2.Globale Einstellungen:ehp2.&colon. &Oe.ffnet das Fenster f&ue.r :link reftype=hd refid=settings.globale 72 Programmeinstellungen:elink.. 73 74 :p.:hp2.Erweiterte Verbindungsoptionen:ehp2.&colon. &Oe.ffnet den Dialog f&ue.r 75 die :link reftype=hd refid=advanced.erweiterten Verbindungsoptionen:elink.. 71 :p.:hp2.LMHOSTS zur&ue.cksetzen:ehp2.&colon. L&oe.scht den Inhalt der LMHOSTS 72 Datei. 73 74 :p.:hp2.Anmeldeinformationen zur&ue.cksetzen:ehp2.&colon. L&oe.scht den 75 Benutzernamen und das Passwort aus dem Speicher. Diese m&ue.ssen 76 bei der n&ae.chsten Anmeldung erneut eingegeben werden. 77 78 :p.:hp2.Kontrollprogramm starten&slr.stoppen:ehp2.&colon. Startet&slr.Stoppt 79 das Kontrollprogramm des Samba Clients. 76 80 77 81 :p.:hp2.Schlie&Beta.en:ehp2.&colon. Schlie&Beta.t die grafische … … 80 84 :p.:hp2.Bearbeiten&colon. Reflektiert das Kontextmen&ue. des linken 81 85 Panels (aktuelle Verbindungen) 82 83 :p.Ansicht&colon. Erlaubt die Auswahl der verschiedenen84 Darstellungsm&oe.glichkeiten des Programmes.85 86 86 87 :p.Ausgew&ae.hlt:ehp2.&colon. Reflektiert das Kontextmen&ue. des rechten … … 144 145 :h2 res=420 name=current.Aktuelle Verbindungen 145 146 146 : font facename='Default' size=0x0.:p.Das Bedienfeld f&ue.r aktuelle Ressourcen auf der linken Seite147 :p.:font facename='Default' size=0x0.Das Bedienfeld f&ue.r aktuelle Ressourcen auf der linken Seite 147 148 des Fensters zeigt alle virtuellen EVFS Laufwerke und 148 149 Mount-Points&comma. die derzeit angelegt sind&comma. und die … … 247 248 werden soll. 248 249 249 250 250 :p.Wenn das ausgew&ae.hlte virtuelle Laufwerk noch nicht 251 251 existiert&comma. wird es automatisch angelegt. Wenn ein … … 257 257 ausgef&ue.llt wurden. 258 258 259 :h2 res=440 name=smbtree.Netzwerkumgebung 260 261 :font facename='Default' size=0x0.:p.In der Netzwerkumgebung werden im LAN verf&ue.gbare 262 Arbeitsgruppen (Domains)&comma. Server bzw. deren Freigaben 263 angezeigt. 264 265 :p.Entweder mit dem Kontextmen&ue. oder mittels Drag and Drop 266 k&oe.nnen neue Verbindungen hergestellt werden. 267 268 :h2 res=450 name=condet.Verbindungsdetails 269 270 :font facename='Default' size=0x0.:p.In der Ansicht Verbindungsdetails werden die Eigenschaften aller 271 im Verbindungen dargestellt&comma. sowohl f&ue.r aktive als auch 272 passive Verbindungen. 273 274 :p.Mittels Kontextmen&ue.operationen oder Drag und Drop k&oe.nnen 275 passive Verbindungen aktiviert bzw. wiederhergestellt werden. 276 277 :h1 res=500 name=miniicons.Minisymbole 278 279 :font facename='Default' size=0x0.Mit dieser Option kann zwischen kleiner und gro&Beta.er 280 Symboldarstellung gewechselt werden. 281 282 :h1 res=600 name=buttons.Schaltflchen am Hauptfenster 283 284 :font facename='Default' size=0x0.Die (optionalen) Schaltfl&ae.chen am Hauptfenster entsprechen den 285 Men&ue.punkten im :link reftype=hd refid=menubar.Hauptmen&ue.:elink. Datei bzw. Hilfe. 286 287 :h1 res=700 name=advanced.Erweiterte Verbindungsoptionen 259 :h2 res=440 name=advanced.Erweiterte Verbindungsoptionen 288 260 289 261 :font facename='Default' size=0x0.Dieses Fenster enth&ae.lt die folgenden Optionen&colon. … … 334 306 EVFSGUI wieder auf die urspr&ue.nglichen Werte zur&ue.ckgestellt. 335 307 336 :h1 res=800 name=settings.Globale Einstellungen 308 :h2 res=450 name=smbtree.Netzwerkumgebung 309 310 :p.:font facename='Default' size=0x0.In der Netzwerkumgebung werden im LAN verf&ue.gbare 311 Arbeitsgruppen (Domains)&comma. Server bzw. deren Freigaben 312 angezeigt. 313 314 :p.Entweder mit dem Kontextmen&ue. oder mittels Drag and Drop 315 k&oe.nnen neue Verbindungen hergestellt werden. 316 317 :h2 res=460 name=condet.Verbindungsdetails 318 319 :p.:font facename='Default' size=0x0.In der Ansicht Verbindungsdetails werden die Eigenschaften aller 320 im Verbindungen dargestellt&comma. sowohl f&ue.r aktive als auch 321 passive Verbindungen. 322 323 :p.Mittels Kontextmen&ue.operationen oder Drag und Drop k&oe.nnen 324 passive Verbindungen aktiviert bzw. wiederhergestellt werden. 325 326 :h2 res=470 name=settings.Globale Einstellungen 337 327 338 328 :font facename='Default' size=0x0.Folgende globale Einstellungen k&oe.nnen f&ue.r das Programm … … 363 353 k&oe.nnen. 364 354 355 :p.:hp2.Anmeldeinformationen bis zum Neustart merken:ehp2.&colon. 356 :p.Ist diese Option aktiviert&comma. speichert der Samba Client die 357 Anmeldeinformationen bis zum n&ae.chsten Neustart&comma. sie muss 358 dann nicht stets aufs neue eingegeben werden. In bestimmten 359 Umgebungen k&oe.nnte das allerdings als Sicherheitsrisiko 360 angesehen werden. 361 362 :p.:hp2.WINS Server:ehp2.&colon. 363 :p.In dieses Feld kann ein im Netzwerk aktiver WINS Server 364 (Namensaufl&oe.sungsdienst) konfiguriert werden. 365 366 :p.:hp2.Reihenfolge der Namensaufl&oe.sung:ehp2.&colon. 367 :p.Mit dieser Einstellung kann die Reihenfolge der Methoden&comma. 368 mit der der Client versucht Namen im Netzwerk aufzul&oe.sen 369 optimiert. werden. 370 :p.:hp2.LMHOSTS Datei verwalten:ehp2.&colon. 371 :p.Ist diese Option aktiviert&comma. sollte lmhosts die erste 372 Methode der Namensaufl&oe.sung sein. Der Samba Client verwaltet 373 die LMHOSTS Datei dann als Cache um Namen schneller 374 aufzul&oe.sen. 375 365 376 :p.:hp2.Plugin-Protokollierung aktivieren:ehp2.&colon. 366 377 :p.Das CIFS&slr.SMB-Plugin f&ue.r EVFS (oder Netdrive) hat eine … … 378 389 kann&comma. was das Programm zur Zeit tut. 379 390 380 :h1 res=900 name=about.Produktinformation 391 :p.:hp2.Kleine Symbole:ehp2.&colon. 392 :p.Mit dieser Option kann zwischen kleiner und gro&Beta.er 393 Symboldarstellung gewechselt werden. 394 395 :h1 res=500 name=about.Produktinformation 381 396 382 397 :font facename='Default' size=0x0.eComStation Virtual File System for SMB Graphical User Interface 383 398 (EVFSGUI) 384 399 385 :p.Version 2. 1 (J&ae.nner&comma. 2011)386 387 :p.(c) 2009-201 1Herwig Bauernfeind&comma. teilweise auch (c)400 :p.Version 2.5 (J&ae.nner&comma. 2013) 401 402 :p.(c) 2009-2013 Herwig Bauernfeind&comma. teilweise auch (c) 388 403 2007-2009 Alex Taylor. All rights reserved. 389 404 … … 403 418 404 419 405 406 407 408 420 :euserdoc. -
trunk/guitools/evfsgui/rc/help/evfsi_en.ipf
r653 r759 59 59 connections automatically during startup. 60 60 61 :p.:hp2.Global Settings:ehp2.&colon. Opens the dialog to configure :link reftype=hd refid=settings.global 62 program settings:elink.. 63 64 :p.:hp2.Advanced Mount Options:ehp2.&colon. Opens the dialog with the :link reftype=hd refid=current.advanced 65 mount options:elink.. 61 :p.:hp2.Reset LMHOSTS:ehp2.&colon. Erases the contents of the LMHOSTS file.. 62 63 :p.:hp2.Reset credentials:ehp2.&colon. Removes user&slr.password from memory. 64 These will have to be retyped during next logon. 65 66 :p.:hp2.Start&slr.Stop Control program:ehp2.&colon. This allows to start and 67 stop the EVFSCTL.EXE control program. 66 68 67 69 :p.:hp2.Close:ehp2.&colon. Saves settings and closes the graphical user … … 70 72 :p.:hp2.Edit:ehp2.&colon. Corresponds with the context menu of the left panel 71 73 (Current connections). 72 73 :p.:hp2.View:ehp2.&colon. Allows you to select the different views of the74 program.75 74 76 75 :p.:hp2.Selected:ehp2.&colon. Corresponds with the context menu of the right … … 246 245 have been filled in. 247 246 248 :h2 res=440 name=smbtree.Network neighbourhood 249 250 :p.:font facename='Default' size=0x0.The Network Neighbourhood View shows available LAN workgroups 251 (domains)&comma. server or its shares. 252 253 :p.Using either the context menu or drag and drop operations you can 254 create new connections. 255 256 :h2 res=450 name=condet.Connection details 257 258 :p.:font facename='Default' size=0x0.Connection Details View shows the properties of all 259 connections&comma. both active and passive ones. 260 261 :p.Using either the context menu or drag and drop operations you can 262 activate or restore passive connections. 263 264 :h1 res=500 name=miniicons.Mini icons 265 266 :font facename='Default' size=0x0.Using this option you can switch between big and small icons. 267 268 :h1 res=600 name=buttons.Buttons on the main window 269 270 :font facename='Default' size=0x0.The (optional) Buttons on the main window correspond with the 271 menu items of the File menu and the Help menu of the :link reftype=hd refid=menubar.main menu:elink.. 272 273 :h1 res=700 name=advanced.Advanced mount options 247 248 :h2 res=440 name=advanced.Advanced mount options 274 249 275 250 :font facename='Default' size=0x0.This window contains the following options&colon. … … 314 289 return to the default values the next time you start EVFSGUI. 315 290 316 :h1 res=800 name=settings.Global settings 291 :h2 res=450 name=smbtree.Network neighbourhood 292 293 :p.:font facename='Default' size=0x0.The Network Neighbourhood View shows available LAN workgroups 294 (domains)&comma. server or its shares. 295 296 :p.Using either the context menu or drag and drop operations you can 297 create new connections. 298 299 :h2 res=460 name=condet.Connection details 300 301 :p.:font facename='Default' size=0x0.Connection Details View shows the properties of all 302 connections&comma. both active and passive ones. 303 304 :p.Using either the context menu or drag and drop operations you can 305 activate or restore passive connections. 306 307 :h2 res=470 name=settings.Global settings 317 308 318 309 :font facename='Default' size=0x0.The following global settings can be set for the program&colon. … … 329 320 :p.:hp2.Immediate Network Neighborhood update:ehp2.&colon. 330 321 331 The network neighborhood must be updated manually by selecting322 :p.The network neighborhood must be updated manually by selecting 332 323 the appropriate button by default. Setting this option&comma. the 333 324 update is done automatically during the start of the program. … … 335 326 :p.:hp2.Use broadcasts instead of Local Master Browser:ehp2.&colon. 336 327 337 Query network nodes by sending requests as broadcasts instead of328 :p.Query network nodes by sending requests as broadcasts instead of 338 329 querying the local master browser. 339 330 … … 342 333 :p.With this option enabled&comma. the program also keeps track of 343 334 connections that cannot currently be reestablished. 335 336 :p.:hp2.Store credentials in memory:ehp2.&colon. 337 :p.The Samba Client will store user&slr.password information in 338 memory with this option. This will save you from retyping it 339 several times&comma. however this might be considered insecure in 340 certain environments. 341 342 :p.:hp2.WINS Server:ehp2.&colon. 343 :p.You may configure which WINS server (a name resolution service) 344 should be used for name resolution. 345 346 :p.:hp2.Order of name resolution methods:ehp2.&colon. 347 :p.By setting the order of methods for name resolution&comma. you 348 may optimize name resolution speed for the Samba Client. 349 350 :p.:hp2.LMHOSTS Datei verwalten:ehp2.&colon. 351 :p.In case this option is activated&comma. lmhosts should be the 352 first method for name resolution. The Samba Client manages the 353 LMHOSTS file as a cache for name resolution. 354 355 :p.Normally using lmhosts first and letting the client manage 356 LMHOSTS file as a cache is fasted&comma. even if there is a fast 357 WINS server in your network. 344 358 345 359 :p.:hp2.Enable plugin logging:ehp2.&colon. … … 350 364 bootdrive. This option creates this file or removes it again. 351 365 352 The logfiles log.ndpsmb and log.smbc are stored in path of the366 :p.The logfiles log.ndpsmb and log.smbc are stored in path of the 353 367 LOGFILES environment variable. In case this does not exist&comma. 354 368 the file is placed into the EVFS (Netdrive) directory. … … 356 370 :p.:hp2.Debug:ehp2.&colon. 357 371 358 This option opens a console in which you can observe what the372 :p.This option opens a console in which you can observe what the 359 373 program does at the moment. 360 374 361 :h1 res=900 name=about.Product information 375 :p.:hp2.Miniicons:ehp2.&colon. 376 377 :p.Using this option you can switch between big and small icons. 378 379 :h1 res=500 name=about.Product information 362 380 363 381 :font facename='Default' size=0x0.eComStation Virtual File System for SMB Graphical User Interface … … 385 403 386 404 405 406 407 408 387 409 :euserdoc. -
trunk/guitools/evfsgui/rc/lang/evfsi_de.mkm
r675 r759 149 149 EVG0138I: Fhigkeiten 150 150 EVG0139I: Version 151 EVG0140I: Benutzerkontext -
trunk/guitools/evfsgui/rc/lang/evfsi_en.mkm
r675 r759 149 149 EVG0138I: Capabilities 150 150 EVG0139I: Version 151 EVG0140I: User context 152 -
trunk/guitools/evfsgui/rc/lang/evfsi_fr.mkm
r675 r759 155 155 EVG0138I: Competnces 156 156 EVG0139I: Version 157 EVG0140I: Contexte d'utilisateur -
trunk/guitools/evfsgui/rc/lang/evfsi_it.mkm
r675 r759 154 154 155 155 EVG0139I: Versione 156 EVG0140I: Contesto di utente -
trunk/guitools/shared/masterpasswd.vrs
r719 r759 72 72 newmasterpasswd = TempDir'master.passwd' 73 73 ok = SysFileDelete(newmasterpasswd) 74 call lineout newmasterpasswd, '# Created by smbusers Version 'word(VRGet("Main", "Hinttext"),2)74 call lineout newmasterpasswd, '# Created by Samba GUI Tools 'date('E')' 'time('')) 75 75 call lineout newmasterpasswd, '# syntax:' 76 76 call lineout newmasterpasswd, '# username:passwd:UID:GID:login-class:chg pw x sec:deact x sec:GECOS:home:shell' … … 121 121 IF options.!debug == 1 then say time()" _PasswordDBRewrite() done ("pwd_mkdbrc")" 122 122 return 123 124 _MasterPasswdFindUser: procedure expose username. 125 IF options.!debug == 1 THEN say '_MasterpasswdFindUser("'arg(1)'") started' 126 FindUser = arg(1) 127 Idx = 0 128 do I = 1 to username.0 129 if translate(username.I) = translate(FindUser) then do 130 Idx = I 131 leave 132 end 133 end 134 IF options.!debug == 1 THEN say '_MasterpasswdFindUser("'FindUser'") done, returning 'Idx 135 return idx -
trunk/guitools/shared/smbtree.vrs
r707 r759 19 19 address cmd 'detach 'samba.!smbtreeexe' 'BroadCast' -S 'UserCred' 'debuglevel' >'samba.!serverlist 20 20 21 if UserCred = '-N' then ok = VRSet("CN_SMBTREE","Caption","User context: Guest") 21 /* strip username from caption */ 22 UserContext = VRGet("CN_SMBTREE","Caption") 23 UserContext = DelWord(UserContext,words(UserContext)) 24 25 if UserCred = '-N' then ok = VRSet("CN_SMBTREE","Caption",UserContext': Guest') 22 26 else do 23 27 parse var UserCred '--user='username'%'. 24 ok = VRSet("CN_SMBTREE","Caption", "User context: "username)28 ok = VRSet("CN_SMBTREE","Caption",UserContext": "username) 25 29 end 26 30 … … 165 169 166 170 say ' detach 'samba.!smbclientexe' -L "'machine'" 'UserCred' 'debuglevel' 2>'smbmachine' 1>&2' 171 call lineout "y:\debugger", ' detach 'samba.!smbclientexe' -L "'machine'" 'UserCred' 'debuglevel' 2>'smbmachine' 1>&2' 167 172 address cmd 'detach 'samba.!smbclientexe' -L "'machine'" 'UserCred' 'debuglevel' 2>'smbmachine' 1>&2' 168 173 -
trunk/guitools/smbmon/smbmon.vrp
r703 r759 7 7 RunDirectory: U:\Develop\Samba\trunk\guitools\smbmon 8 8 VRXWindow: __VREMainWindow,1,2180,3614,1024,6769 9 VRXWindow: __VRESectionListWindow,1, 3541,11804,7914,604710 VRXWindow: __VREToolsWindow,1,2156,1494,648 0,166911 VRXWindow: __VREWindListWindow,1,964,11708, 2650,31509 VRXWindow: __VRESectionListWindow,1,4083,11804,7372,6047 10 VRXWindow: __VREToolsWindow,1,2156,1494,6483,1659 11 VRXWindow: __VREWindListWindow,1,964,11708,3132,3150 12 12 UserFile: 1 13 13 UserWindow: Main,1 14 14 UserWindow: SW_FILES,1 15 UserWindow: SW_SMBTREE,1 -
trunk/guitools/sscc/sscc.vrp
r688 r759 7 7 VRXWindow: __VREMainWindow,1,2180,3710,903,8000 8 8 VRXWindow: __VRESectionListWindow,1,3276,11997,8648,3342 9 VRXWindow: __VREToolsWindow,0,3 211,9877,6486,16699 VRXWindow: __VREToolsWindow,0,3324,9877,6486,1669 10 10 VRXWindow: __VREWindListWindow,1,927,11997,2337,3336 11 11 UserFile: 1
Note:
See TracChangeset
for help on using the changeset viewer.