Conversion From 'String' " " To Type 'Double' Not Valid
I am making a program that downloads programs to %appdata% folder, i was able to get to the folder, i have downloading done, but when i debug and test, i get this error! It is 100% correct but it isnt working (using imports system.environment, and it worked before).
The code i use was "dim launch as string = getfolderpath(specialfolder.applicationdata + "program.exe" with "file.exists". I googled it but no avail . Please help!
Ps using the mobile version.

Try using & rather than +.
Both "+" and "&" can be used for concatenation in Vb.net. However vb.net understands the context of "&" better and won't end up attempting to "+" (add) the string, which will give you the error you mentioned above. Your result is a Valid String but not a Valid Double. Usually this is a "problem" you see when Option Explicit is ON because Option Explicit ON will disallow the explicit conversion of String to Double. But it's a good idea to keep it on, so "&" is the better method.
Kevin had it right, I just wanted to quickly explain why, because (IMO) if you don't understand why, you may continuously make the same "mistake".