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]




