- Timestamp:
- Aug 19, 2013, 3:10:23 AM (12 years ago)
- Location:
- trunk/gui
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gui/printer/manager/PRINTOOL.VRX
r43 r44 467 467 468 468 ppaks.0 = _count 469 470 CALL VRMethod 'CN_PRINTERPAKS', 'RemoveRecord', 'All' 469 471 CALL VRMethod 'CN_PRINTERPAKS', 'AddRecordList',, 'Last', 'ppaks.' 470 472 … … 888 890 LoadSettings: PROCEDURE EXPOSE globals. 889 891 890 globals.!version = '0.4 4'892 globals.!version = '0.45' 891 893 globals.!copyright = '2013' 892 894 … … 2317 2319 CALL NLSSetText 'PB_DEVICE_OTHER', 'Caption', 188 2318 2320 CALL NLSSetText 'PB_DEVICE_REFRESH', 'Caption', 63 2319 CALL NLSSetText 'PB_DEVICE_INSTALL', 'Caption', 82321 CALL NLSSetText 'PB_DEVICE_INSTALL', 'Caption', 2 2320 2322 CALL NLSSetText 'PB_DEVICE_CANCEL', 'Caption', 3 2321 2323 -
trunk/gui/shared/PrManUtl.VRS
r43 r44 237 237 IF drv_dir == '' THEN RETURN 0 238 238 239 240 239 IF VerifyDriverEAs( driver ) == 0 THEN RETURN 0 241 240 … … 273 272 END 274 273 274 /* If AUXPRINT.PAK exists, copy it as well */ 275 copyfile = drv_dir'\AUXPRINT.PAK' 276 IF STREAM( copyfile, 'C', 'QUERY EXISTS') <> '' THEN DO 277 ok = VRCopyFile( copyfile, newdrvdir'\AUXPRINT.PAK' 278 CALL LINEOUT globals.!log1, ' -' copyfile ':' ok 279 END 280 281 /* Create an EA file if necessary */ 275 282 eafile = VRParseFilePath( driver, 'N') || '.EA' 276 IF \VRFileExists( newdrvdir'\'eafile ) THEN 277 ADDRESS CMD '@EAUTIL' newdrvdir'\'drv_name ea_file '/s /p 2>NUL 1>NUL' 283 IF VRFileExists( newdrvdir'\'eafile ) THEN 284 CALL VRDeleteFile newdrvdir'\'eafile 285 ADDRESS CMD '@EAUTIL' newdrvdir'\'drv_name newdrvdir'\'eafile '/s /p 2>NUL 1>NUL' 278 286 279 287 RETURN 1
Note:
See TracChangeset
for help on using the changeset viewer.