I tried fully reinstalling .net 4. Still nothing, this is really frustrating. I might contact Microsoft if nothing still works.
Edit:
Not related but:
One part of my code keeps on skipping the CIN statement. (Don't worry. Im not making a Warez Downloader) I've googled this, but I cant seem to find an answer that helps me with my issue:
#include<iostream>
#include<stdio.h>
#include<Windows.h>
using namespace std;
int main()
{
system("COLOR 5");
system("TITLE WAREZ DOWNLOADER V1");
double systemmemory;
char file;
char servername;
double filesize;
cout << "Welcome to WAREZ DOWNLOADER V1" << endl;
cout << "Please enter server name" << endl;
cin >> servername;
cout << "Scanning if host is available..." << endl;
Sleep(1000);
cout << "Host is available" << endl;
Sleep(100);
cout << "Please enter the name of the file you want to download" << endl;
cin >> file;
cout << "Scanning for availability of file..." << endl;
Sleep(500);
cout << "File has been found" << endl;
cout << "Download file? (Y/N) (Capitals only.)" << endl;
//Enter yes no statement here
cout << "Beginning file download" << endl;
Sleep(200);
cout << "Download at 1%" << endl;
Sleep(4500);
cout << "Download at 15%" << endl;
Sleep(3670);
cout << "Download at 30%" << endl;
Sleep(1343);
cout << "Download at 45%" << endl;
Sleep(3285);
cout << "Download at 65%" << endl;
Sleep(4328);
cout << "Download at 70%" << endl;
Sleep(2545);
cout << "Download at 85%" << endl;
Sleep(1234);
cout << "Download at 95%" << endl;
Sleep(4334);
cout << "Download Complete!" << endl;
system("PAUSE");
return 0;
}
The cin command is skipped at the "cin >> file;" line.
Thanks for the extra help!
Fruitella's a badman sweet, do you get me?