|
-
Mar 23rd, 2002, 09:02 PM
#1
Thread Starter
Junior Member
I need to upload a file onto a server
I am making a program that you write something in 1 box.. and it saves it onto a server (http://cybtech.bravenet.com) using the file name given in another box. They're all text files. I need to save the text files directly onto the server so it can be read by everyone.. How do i do this? Thanks.
I am the SaintDogbert!!
 They're after me lucky charms!! 
-
Mar 23rd, 2002, 09:16 PM
#2
Frenzied Member
does this server have ftp access?
Government is another way to say better…than…you.
It’s like ice but no pick, a murder charge that won’t stick,
it’s like a whole other world where you can smell the food,
but you can’t touch the silverware.
Huh, what luck. Fascism you can vote for.
Humph, isn’t that sweet?
And we’re all gonna die some day, because that’s the American way
-Stone Sour
-
Mar 23rd, 2002, 09:22 PM
#3
Thread Starter
Junior Member
yes.
I am the SaintDogbert!!
 They're after me lucky charms!! 
-
Mar 23rd, 2002, 09:32 PM
#4
Frenzied Member
add the microsoft internet transfer control to ur project
VB Code:
Inet1.URL = "ftp://ftp.myftpsite.com" 'url
Inet1.UserName = "Anonymous" 'username
Inet1.Password = "password" 'password
DoEvents
Inet1.Execute , "PUT C:\whatever\whatever.txt /dir/dir/whatever.txt"
'this is what actually puts the text in... the first filename
'is the local path, the second filename is the remote path
Loop
Government is another way to say better…than…you.
It’s like ice but no pick, a murder charge that won’t stick,
it’s like a whole other world where you can smell the food,
but you can’t touch the silverware.
Huh, what luck. Fascism you can vote for.
Humph, isn’t that sweet?
And we’re all gonna die some day, because that’s the American way
-Stone Sour
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|