Changeset 1049
- Timestamp:
- Jan 24, 2018, 9:28:22 PM (8 years ago)
- Location:
- branches/guitools-arcamap-2.5/evfsgui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/guitools-arcamap-2.5/evfsgui/evfsgui.vrx
r1044 r1049 685 685 _Dynamic: 686 686 dyn_code = arg(1) 687 if options.!debug == 1 then say ' Dynamic code: 'dyn_code687 if options.!debug == 1 then say time()' Dynamic code: 'dyn_code 688 688 interpret dyn_code; drop dyn_code 689 689 return … … 3854 3854 3855 3855 /* Attach the virtual drive - only if drive is not already attached */ 3856 NewlyAttached = 0 3856 3857 if pos(vfs.!drive,MyFreeDriveMap("C:","FREE")) > 0 then do 3857 3858 CALL _Dynamic "ok = "fs.!prefix"RxAttach('"vfs.!drive"')" 3858 3859 NewlyAttached = 1 /* fixes AN Ticket 1654 */ 3859 3860 if options.!debug == 1 then say time()' '||'Attach "'vfs.!drive'" =' ok 3860 3861 end … … 3958 3959 3959 3960 /* In case the mountpoint was created for this failed operation, it is (optionally) removed again */ 3961 say "CreateMP="createMP 3962 say "advanced.!alwaysmp="advanced.!alwaysmp 3960 3963 if CreateMP = 0 & advanced.!alwaysmp <> 1 then do 3961 3964 CALL _Dynamic "ok = "fs.!prefix"RxDeleteMountPoint('"vfs.!mountpoint"')" 3962 3965 if options.!debug == 1 then say time()' '||'Remove "'vfs.!mountpoint'" = 'ok 3966 if NewlyAttached = 1 then do /* Also detach drive - fixes AN Ticket 1654 */ 3967 CALL _Dynamic "ok = "fs.!prefix"RxDetach('"vfs.!drive"')" 3968 if options.!debug == 1 then say time()' '||'Also try to detach "'vfs.!drive'" ok = 'ok 3969 end 3963 3970 end 3964 3971 end … … 3970 3977 end 3971 3978 drop CreateMP /* not required anymore */ 3979 drop NewlyAttached /* not required anymore */ 3972 3980 3973 3981 /* Obsolete - the IOCtl will not be implemented this way in the plugin … … 4466 4474 END 4467 4475 4468 options.!user = userid 4469 options.!password = password 4476 options.!user = userid 4477 options.!password = password 4478 /* fix for AN Ticket #1653 */ 4479 options.!spassword = c2x(options.!password) 4470 4480 4471 4481 vfs.!drive = mdrive … … 5054 5064 SW_ADVANCED_Init: 5055 5065 /* Title bar */ 5056 CALL NLVSetText "SW_ADVANCED", "Caption", 405066 CALL NLVSetText "SW_ADVANCED", "Caption", 40 5057 5067 5058 5068 /* Options */ 5059 CALL NLVSetText "GB_ADVANCED", 5069 CALL NLVSetText "GB_ADVANCED", "Caption", 43 5060 5070 CALL NLVSetText "CB_EAS", "Caption", 44 5061 5071 CALL NLVSetText "CB_READONLY", "Caption", 45 … … 5083 5093 */ 5084 5094 SW_ADVANCED_Init_Content: 5085 IF advanced.!easupport \= "" THEN ok = VRSet("CB_EAS", "Set", advanced.!easupport)5086 IF advanced.!readonly \= "" THEN ok = VRSet("CB_READONLY", "Set", advanced.!readonly)5087 IF advanced.!alwaysmp \= "" THEN ok = VRSet("CB_ALWAYSMP", "Set", advanced.!alwaysmp)5095 IF advanced.!easupport \= "" THEN ok = VRSet("CB_EAS", "Set", advanced.!easupport) 5096 IF advanced.!readonly \= "" THEN ok = VRSet("CB_READONLY", "Set", advanced.!readonly) 5097 IF advanced.!alwaysmp \= "" THEN ok = VRSet("CB_ALWAYSMP", "Set", advanced.!alwaysmp) 5088 5098 IF advanced.!cachetimeout \= "" THEN ok = VRSet("SPIN_CACHETIMEOUT", "Value", advanced.!cachetimeout) 5089 5099 IF advanced.!cachelistings \= "" THEN ok = VRSet("SPIN_CACHELISTINGS", "Value", advanced.!cachelistings) … … 5092 5102 IF advanced.!encryption \= "" THEN ok = VRSet("CB_ENCRYPTION", "Set", advanced.!encryption) 5093 5103 /* Obsolete */ 5094 IF advanced.!memlen \= "" THEN ok = VRSet("SPB_MEMLEN", "Value", advanced.!memlen)5104 IF advanced.!memlen \= "" THEN ok = VRSet("SPB_MEMLEN", "Value", advanced.!memlen) 5095 5105 return 5096 5106 -
branches/guitools-arcamap-2.5/evfsgui/rc/lang/evfsi_en.mkm
r1016 r1049 113 113 EVG0104I: SMB.PDR is not installed. 114 114 EVG0105I: No SMB ports installed. 115 EVG0106I: Port is install ked anconfigured, but not used by any printer.115 EVG0106I: Port is installed and configured, but not used by any printer. 116 116 EVG0107I: Welcome %1! 117 117 EVG0108?:
Note:
See TracChangeset
for help on using the changeset viewer.