what are you "programming" right now?
Posted: Tue May 10, 2005 2:12 pm
hello. i'm new. i'm a newbie.
nice to meet this community.
my question is simple. what do you do with pure basic? what are you workin on right now?
i'm writing a simple application with 2 buttons: "browse" and "send".
this stupid program let you search in your hard drive an audio file and send it to a specified FTP server. then it sends an email with the link (like: ftp.server.com/mysong.mp3) to the rest of my band. not so useful but quite amazing for me right now. i'm writing it because the other musicians of my band don't now how to use an ftp client and we need to listen our ideas every day.
my little question: the program use an external TXT file where i wrote the SMTP server address and the email of my friends.
like :
i used this code
so my app read the server address. but how can i teach him to read on the second line the first email address and on the 3rd line the second email address?
bye
marco[/code]
nice to meet this community.
my question is simple. what do you do with pure basic? what are you workin on right now?
i'm writing a simple application with 2 buttons: "browse" and "send".
this stupid program let you search in your hard drive an audio file and send it to a specified FTP server. then it sends an email with the link (like: ftp.server.com/mysong.mp3) to the rest of my band. not so useful but quite amazing for me right now. i'm writing it because the other musicians of my band don't now how to use an ftp client and we need to listen our ideas every day.
my little question: the program use an external TXT file where i wrote the SMTP server address and the email of my friends.
like :
Code: Select all
smtp.server. com
mail@mail.com
mail2@mail. com
Code: Select all
If ReadFile(0, "server.txt")
server$ = Trim(ReadString())
CloseFile(0)
bye
marco[/code]