Well how can I code for 64bit? Do I just change the way it installs? Is 64bit coding special, is it different?
Printable View
Well how can I code for 64bit? Do I just change the way it installs? Is 64bit coding special, is it different?
What do you mean exactly? Do you want to write code to take advantage of a 64 bit processor?
Any code you write in Visual Basic should run fine on 64 bit as well as 32 bit. You can specificaly compile your code for 64-bit processors using the target platform options in your project properties, but the code itself wouldn't be any different.
yea i want to take advantage of the 64 bit processor. Thanks!
Set your project to compile for "Any CPU" and it'll run as x64 on a x64 OS, and x86 on anything else automatically.