Thanks all.  I think it would be easier for me to just compile the app rather 
than put 

in the extra coding. 



I take it that the observed behavior is what is expected though and not some 

syntax error in my ZIP command. 



-Bob 



----- Original Message ----- 
From: "Paul InterlockInfo" <[email protected]> 
To: "RBASE-L Mailing List" <[email protected]> 
Sent: Thursday, July 30, 2009 9:16:55 AM GMT -06:00 US/Canada Central 
Subject: [RBASE-L] - RE: ZIP Command 




Sorry for all the spelling errors.  I was driving and enjoying the weather.  It 
is PluginPowerPack  -   Not the other thing I said. 





Syntax: 

PLUGIN RBFileOperations.rbl vResult|<parameters> 

Options: 

OPERATION <value> 

COPY_DIR - to copy a directory 

RENAME_DIR - to rename a directory 

DELETE_DIR - to delete a directory 

MOVE_DIR - to move a directory 

COPY_FILES - to copy files 

RENAME_FILE - to rename files 

DELETE_FILES - to delete files 

MOVE_FILES - to move files 



Example: 

To move the folder D:\TEMP\DCU in C:\TEMP 

PLUGIN RBFileOperations.RBL v1 |OPERATION MOVE|SOURCE D:\TEMP\DCU |TARGET 
C:\TEMP 

To delete *.dcu files in folder D:\TEMP\DCU 

PLUGIN RBFileOperations.RBL v1 |OPERATION DELETE_FILES|SOURCE D:\TEMP\DCU\*.DCU 

To copy *.dcu files in folder D:\TEMP\DCU to C:\TEMP 

PLUGIN RBFileOperations.RBL v1 |OPERATION COPY_FILES|SOURCE 

D:\TEMP\DCU\*.dcu |TARGET C:\TEMP 



(copied from PluginPowerPack.pdf help) 




Sincerely, 

Paul 





From: [email protected] [mailto:[email protected]] On Behalf Of 
[email protected] 
Sent: Thursday, July 30, 2009 8:43 AM 
To: RBASE-L Mailing List 
Subject: [RBASE-L] - RE: ZIP Command 



Or use RPowerPlugIn 

Sent from my Verizon Wireless BlackBerry 



>From : "Walker, Buddy" 
Date : Thu, 30 Jul 2009 08:37:20 -0400 
To : RBASE-L Mailing List<[email protected]> 
Subject : [RBASE-L] - RE: ZIP Command 

Bob 

  Did you try writing to batch file then launching it. 

Buddy 



SET VAR vTmpFolder TEXT = (ENVVAL('TMP')) 

 SET VAR vFileName TEXT = (.vTmpFolder + '\YourFile.BAT') 

 OUT &vFileName 

   WRITE ‘write the move command here’ 

   WRITE 'EXIT' 

 OUT TERM 



 SET VAR vFileName = (.vFileName + '||W') 



 LAUNCH &vfileName 







From: [email protected] [mailto:[email protected]] On Behalf Of 
[email protected] 
Sent: Thursday, July 30, 2009 8:07 AM 
To: RBASE-L Mailing List 
Subject: [RBASE-L] - ZIP Command 




A few days ago, a suggestion was made to use the Zip cmd.exe /c move  command 

to move files.  This seems to work fine... with an exception. 



(I have not compiled this application yet and I have a command file that starts 
from an desktop icon.) 



C:\RBTI\RBG8\RBG8.EXE auto.cmd 



The auto.cmd simply does a connect and edit using form command. 

This all works as expected with just the form displaying on the screen 



When the eep runs that issues the zip command, the database explorer appears 
over the form. 

I can use the stay on top property, but the explorer still shows in the 
background. 



How do I use the ZIP command without having the explorer pop up?  I want only 
the form to show on the desktop 

as when the program first starts. 



Turbo V8 



Thanks all, 



-Bob

Reply via email to