I have created a project within VB.net, which downloads an .exe from my DropBox. When I manually download, the .exe it runs perfectly, however when I download it through my VB project, it comes up with the error:
EDIT:
"Unsupported 16-bit Application:"
"The program or feature cannot start or run due to incompatibility with 64-bit versions of Windows"
This is the code I use to automatically download the .exe:
My.Computer.Network.DownloadFile("[FILE LINK]", "[FILE DIRECTORY]")
The .exe downloaded through the VB.net project is only 155 bytes, whereas the actual .exe should be around 120 KB.
Why does the file become incompatible when downloaded through my VB.net project?