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. anders75

    log in from a program

    Hi, I would like to learn how I could "hide" an ftp server directory so that the only one having access granted to that directory is the ftp client. My idea is to let the program log in as a special user, which will be the only one having access to a certain ftp server directory. I...
  2. anders75

    Posting files to a computer on the network

    Thanks, I think I will have a try with this CopyFile (either API or function). But the thing is that I rather would like to do this in a very controlled manner. I have to use authentication to be able to write to this specific server. Also, I must be able to know exactly when the transfer is...
  3. anders75

    Posting files to a computer on the network

    Hi, I would like to develop an app that lets users post files to a computer on the same network. Do you know of any good api for this? I'm thinking about using a p2p api, but I believe that most of the p2p applications around are built for file sharing, not file posting. Anyone has experience...
  4. anders75

    Hi, I don't know if I'm in the r

    Hi, I don't know if I'm in the right list. Let's try. I want to know how to protect a specific item (computer, server etc) on a network. I would like to develop a program that copies a file from this item, manipulates it on another computer and then writes the new file to the item. The program...
  5. anders75

    C++ to Visual Basic

    Hi list, I would like to write VB code that works as the following C++ code: ... ... FILE* f; int BytesRead, i; unsigned char Buffer[BufferSize]; ... ... do { BytesRead = 0; BytesRead = fread(Buffer, 1, sizeof(Buffer), f); if (! SubjectSearchProcessData(Buffer, BytesRead)) {...
  6. anders75

    Read file byte for byte

    Well.. The thing is that I would like to write VB code that works as the following C++ code: ... ... FILE* f; int BytesRead, i; unsigned char Buffer[BufferSize]; ... ... do { BytesRead = 0; BytesRead = fread(Buffer, 1, sizeof(Buffer), f); if (! SubjectSearchProcessData(Buffer, BytesRead)) {...
  7. anders75

    Read file byte for byte

    I have done this: Open "A.doc" For Binary Access Read As filenumber But I would like to open the file inside a loop, to be able to get each byte separately. Something like: Open file do{ Read one byte Some code here... }While (BytesRead != 0) Thanks, Anders
  8. anders75

    Read file byte for byte

    Hi list, I would like to read a (text) file bytewise, that is, I don't want to read entire lines or strings. How do I do this? Thanks, Anders

Part and Inventory Search

Back
Top