Hello. I am trying to convert my chat client from a C++ program that runs in DOS into one that runs in a Windows Dialog. I am using Visual C++. However, I am already getting a strange error:
#include <string>
That links without error, but when I try to use in a function
string meh = first;
{I was feeling particularly uncreative in naming my strings that day}
I get the error that "string is an undeclared identifier."
Well, personally, I thought I just defined it! All of this code worked just fine in my DOS client program.