
As for salvaging, you could always copy your controls and source over into a new project created with lower level framework.
In vista, right-click on x360 > run as admin. Even if you are the administrator of your computer, because of the UAC protection you'll still have to do that or disable the UAC all together.aaron108 wrote:NOTE: if it matters any im running windows vista
Code: Select all
int variable = (Math.Sqrt(otherVariable));
Code: Select all
int variable = (int)Math.Sqrt(yourDouble);
Code: Select all
this.opacity = .1 * trackbar.value;