Welcome Guest | Subscribe/Login

More MultiValue Database and Products Articles...

Tech Tip

How do you FTP from within your MultiValue Business Application?

 

 

Twitter Button from twitbuttons.com

Release Date: Monday, January 01, 0001

How do you FTP from within your MultiValue Business Application? The following solution was dirived from a post on COMP.DATABASE.PICK by David Ehrhart.

You take data and format it how ever you need. You then write it out using the UOPEN / UWRITE statements in Basic - putting it where ever you need it on the Server / PC.

They then run a FTP Script from within basic by:
EXECUTE "sh FTP -s:xxx.scr -d"

The xxx.scr (Script) looks like:
open ftp.<site>.com
<username>
<password>
ascii
put d:\directory\fname.dat
bye

 

# # #          # # #          # # #

 

Related Articles:


Return to top