StrToWide converts a std::string to WideString
#include <string> //From http://www.richelbilderbeek.nl/CppStrToWide.htm WideString StrToWide(const std::string& s) { return s.c_str(); }