My program uses a webrequest to send information to my website.
Dim request As WebRequest = WebRequest.Create("http://www.mysite.com./record_use.php?w=" & strRecord)
The string (strRecord) is simply the name of the exe running, date etc. Someone has got into the code and sent their own version of strRecord to the website.
How is this possible?
Do I need to protect my compiled code and if so, how?
Graham