New version of the typical question of how to convert from std::string to LPCTSTR.
std::string
LPCTSTR
Reading from different SO posts I learnt that I should do th
I have struggled with this for quite a while. After quite a bit of digging I found this works the best; you could try the following:
std::string t = "xyz"; CA2T wt (t.c_str());