Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. keepingbusy

    Download single file fro ftp folder

    Thanks again Keith
  2. keepingbusy

    Download single file fro ftp folder

    Hello Keith, I received your notification via email and would not wish to ignore you. If you take a look at http://www.tek-tips.com/viewthread.cfm?qid=1698949 I have found some coding I now use in a batch file as described in the thread and together with the VFP RUN command I have now been...
  3. keepingbusy

    Straight forward FTP process

    Sorry, just stumbled across this extra piece of code that is now working: I changed my command lines in the .bat file and saved it to a txt file. open ftp.xxxxxxxx.com myusername mypassword cd reportfolder binary get mytextfile.txt bye exit I then ran the following: C:\ftp -i...
  4. keepingbusy

    Straight forward FTP process

    Hi guys Apologies for not getting back sooner but this is what I have that is working and downloads the required file to our computer if I enter each manually at the DOS prompt: cdcd ourfolder ftp ftp.xxxxxxxx.com myusername mypassword cd reportfolder binary get mytextfile.txt bye exit I have...
  5. keepingbusy

    Download single file fro ftp folder

    Mike Like others, you are one of the many who have greatly assisted me in the past for which I'm grateful but like anything in life, there does come a point when you have to ask yourself the question which I have already answered. I would like to think I am a very positive person and I'm no...
  6. keepingbusy

    Download single file fro ftp folder

    Olaf If you took the time to read this correctly and get an understanding of what I posted, the reason I asked this question in the Windows 7 forum first was because I thought I could achieve this by using DOS commands BEFORE I asked the question in this forum. When I did some research within...
  7. keepingbusy

    Straight forward FTP process

    Hello guys Thanks for all the posts. I'm hoping to sit down this evening and try out your suggestions.
  8. keepingbusy

    Download single file fro ftp folder

    JRB-Bldr & Olaf Thanks for your posts guys. I did originally post this question in the Windows 7 forum thinking it was a DOS related question. I will look at the suggestions you have posted and get back when I find a sollution. My biggest problem at the moment I just cannot seem to get past...
  9. keepingbusy

    Download single file fro ftp folder

    Hello I found the FAQ faq184-3234 I have tried the coding for "*... FTPGet.PRG ...*" Part of that is: DO ftpget WITH 'ftp.host', 'name', 'password', 'source.file', 'target.file'[, 1 | 2] I have tried using: DO ftpget WITH 'ftp://ftp.xxxxx.xxx/our_report', 'ourusername', 'ourpassword'...
  10. keepingbusy

    Straight forward FTP process

    Richard Thanks for the post. All, I still cannot connect to the ftp server. I have tried different combinations such as (at the C:\ prompt): FTP open ftp://ftp.xxx.xxx/myfolder/ open ftp.xxx.xxx/myfolder/ The message I am getting is unknown host If I type ftp://ftp.xxx.xxx/myfolder/ in the...
  11. keepingbusy

    Straight forward FTP process

    rclarke250 Thanks for your post but we are hoping to do this automatically and on the hour using Windows Scheduler with some other code we are compiling. Will post back
  12. keepingbusy

    Straight forward FTP process

    Hi Thanks for posting the link which I will look at and post back.
  13. keepingbusy

    Straight forward FTP process

    Hello I have been looking at various scripts from a Google search but cannot for the like of me get this thing working. I am simply trying to open an FTP site and download a file from it. Here is an example I found: FTP -v -i -s:ftpscript.txt In the text file: open example.com username...
  14. keepingbusy

    Encase / Line up text from memo field in word document

    Think we posted at the same Olaf so I missed the entry about rulers. Thank you
  15. keepingbusy

    Encase / Line up text from memo field in word document

    Hi Olaf Thank you for your post. The actual layout of the word document is fine for the exception of the issue with the memo field. As you know, it's quite difficult to display that giving an example on this forum due to the way it shows. The tabs are ok, it's just the memo fields that are...
  16. keepingbusy

    Encase / Line up text from memo field in word document

    Hello I am using the code below (some of which has been edited / removed) to create a WORD document and add some records to it from a table. #DEFINE vfpCR CHR(13) #DEFINE vfpTAB CHR(9) #DEFINE wdSeparateByTabs 1 #DEFINE wdTableFormatColorful2 9 #DEFINE wdAlignParagraphLeft 0 LOCAL loWord...
  17. keepingbusy

    IIF( ) Function in grid column if condition applies

    Hi Mike Thank you for the post. Yes, I understand the concept of your suggestion. The actual form where the grid is diplayed is a one-too-many form and the grid is populated with child records linked by a field from both tables. Will this make a difference to what you have suggested and is it...
  18. keepingbusy

    IIF( ) Function in grid column if condition applies

    Hi I have a table (MYTABLE) with multiple columns one of which I want to show a certain field if a condition applies or another field if it doesn't. A field within the table (MYFIELD1) is a numeric field which either contains the number 1 or higher. Two other fields (MYFIELD2) and (MYFIELD3)...
  19. keepingbusy

    Permissions on folders

    Hello guys Thank you for taking the time to reply and I welcome your comments and suggestions. The idea of one exe with a path to the main one sounds like a good avenue to go down. Appreciate your time.
  20. keepingbusy

    Report Form: How to show a complete page as the last page

    Mike It doesn't spellcheck by default but when I asked three people to try out this app, the first thing I was asked was, "why does it tell me .... " and you know the messagebox that opens as above! I am trying to avoid that so I will wait and see what replies I get. Thanks for your...

Part and Inventory Search

Back
Top