lol, well guess the *string was the problem....thought i needed that...but oh well. Guess its without it. It works now.

Code:
// This is the main project file for VC++ application project 
// generated using an Application Wizard.

//#include <iomanip>
//#using <mscorlib.dll>
//#include <tchar.h>
//#include <stdlib.h>
//#include <conio.h>
//using namespace System;
//#include <stdlib.h>
//#include <cstring>
#include "stdafx.h"
#include <iostream>
#include <string>

using namespace std;

main()
{
	string strName; 
	string strNameA; 
	string strName3; 
	string strName4;
	string strName5;
    
    cout << "Alphabetical Order System \n\n\n";

	cout << "Enter Name # 1: ";
	cin >> strName;
	cout << "\n";

	cout << "Enter Name # 2: ";
	cin >> strNameA;
	cout << "\n";
	
	cout << "Enter Name # 3: ";
	cin >> strName3;
	cout << "\n";
	
	cout << "Enter Name # 4: ";
	cin >> strName4;
	cout << "\n";
	
	cout << "Enter Name # 5: ";
	cin >> strName5;
	cout << "\n";


	return 0;
}