I am not sure if it is a bug or if it is a feature request. I'd like to see the text of a string in the edit field beside the "GO" button if i place the cursor into the symbol.
static LPCWSTR wstr = L"test" ;
static char* cstr = "test" ;
int main(int argc, char* argv[])
{
LPCWSTR str2 = wstr ; // Place cursor into wstr
char* str3 = cstr ; // or in cstr and the text "test" cannot be seen in the edit field on the left side of the "GO" button
return 0;
}