whats this?
screenUP is a little program i made, im new in programming so i try to put everything that comes into mind into programming =)
this program will (with user set intervals from 30 sec to 5 min) take a screenshot and upload(hence the lame name) it to some ftp server by choice, i saw something like this somewere before but it was something you had to sign up for and so forth and now i cant find it, so i made my own!
heres a sample. (wont change since im not running it atm
)
this is what the pragram looks like:

whats needed:
some ftp server (incl acc / pass and uploading privs)
and a premade folder on that ftp server.
its quite simple, if you own a homepage just make a folder on that homepage and make a index.html file with the following:
Code:
<html>
<head>
<meta http-equiv="refresh" content="30">
<body>
<IMG SRC="screen.png">
</body>
</head>
</html>
this will make sure that the uploaded screen is shown (screen.png) and auto refresh the page every 30 seconds (content="30")
when the homepage part is done, on to the program 
you will have to set it up.

user will be the ftp user
password is the ftp password for the selected user
the "homapage"(cba to edit
) is the homepage your using to upload it to, (dont use www. or any /'s, simply write homepage.com etc)
and the folder is the premade folder on that ftp server where you put the index.html
the program will save the options and load them if you run the program (if your paranoid you can delete them in the regedit, go to start -> run -> regedit and find CurrentUser -> Software -> screenUP and delete that
)
oh and im having some error with makeing a close form, so you have to ctrl alt del and close "screenUP" in processes
working on it tho!
after this is done the program should work =)
the source is also up for download so you can look at the code and compile it yourself (paranoia much) and its in C#
also i uploaded the files on my own homepage since the mmowned attachment thing wont work (upload failed)
heres the virustotal
im all open for critizm and ideas as im trying to improve as much as i can, and credits to everyone who helped me! ;D
download the program including the mentioned index.html file for those lazy peons 
download the source in C# (csharp)
post all the errors and bugs you can find and i'll try to fix them =)
HF!