Error converting string to LPCTSTR with Qt
-
@Chris-Kawa Sorry i dont understand very well. You are saying me that i dont need to do the conversion to get to work with my winapi function? But where i willl put this text which variable?
SetWindowTextA(hwnd, valor.c_str()); //or with UNICODE undefined: SetWindowText(hwnd, valor.c_str());
-
@RIVOPICO said in Error converting string to LPCTSTR with Qt:
But where i willl put this text which variable?
Now I'm not sure I understand. You put it wherever you want. For example:
LPCSTR foo = "Hello!"; SetWindowTextA(hwnd, foo);
or
LPCWSTR foo = L"Hello!"; SetWindowTextW(hwnd, foo);
or
std::string foo = "Hello!"; SetWindowTextA(hwnd, foo.c_str());
or
QString foo = "Hello"; SetWindowTextW(hwnd, (LPCWSTR)foo.utf16());
-
@Chris-Kawa But for example if i have this function:
HRSRC res=FindResource(NULL,L"->SetWindowsTextA?",RT_RCDATA);
How i can use SetWindowText? I must to save the result in my variable?. In other words, how i can apply setwindowstext to save in a var and put in my second argument?
-
HRSRC res=FindResource(NULL,L"->SetWindowsTextA?",RT_RCDATA);
That doesn't make any sense whatsoever.
SetWindowsText
was just an example of WinAPI function since you never said what function you're interested in. Replace it with whatever function you need. If it'sFindResource
then you can do any of these:HRSRC res = FindResourceA(NULL, "SomeResourceName", RT_RCDATA);
or
HRSRC res = FindResourceW(NULL, L"SomeResourceName", RT_RCDATA);
or
LPCSTR foo = "SomeResourceName"; HRSRC res = FindResourceA(NULL, foo, RT_RCDATA);
or
LPCWSTR foo = L"SomeResourceName"; HRSRC res = FindResourceW(NULL, foo, RT_RCDATA);
or
QString foo = "SomeResourceName"; HRSRC res = FindResourceW(NULL, (LPCWSTR)foo.utf16(), RT_RCDATA);
or any of the dozen other possibilities.
-
@Chris-Kawa said in Error converting string to LPCTSTR with Qt:
LPCSTR foo = "SomeResourceName";
HRSRC res = FindResourceA(NULL, foo, RT_RCDATA);When i use in qt findresourceA all time take me error i tried the two ways.
code:HRSRC res = FindResourceA(NULL, "SomeResourceName", RT_RCDATA);
error:
error: C2664: 'HRSRC FindResourceA(HMODULE,LPCSTR,LPCSTR)' : el argumento 3 no puede convertirse de 'LPWSTR' a 'LPCSTR' the types are not related; the conversion require reinterpret_cast, conversi¢n of style of C or conversi¢n of style of function
second way:
LPCSTR foo = "SomeResourceName"; HRSRC res = FindResourceA(NULL, foo, RT_RCDATA);
error:
error: C2664: 'HRSRC FindResourceA(HMODULE,LPCSTR,LPCSTR)' : el argumento 3 no puede convertirse de 'LPWSTR' a 'LPCSTR' Los tipos se¤alados no est n relacionados; la conversi¢n requiere reinterpret_cast, conversi¢n de estilo de C o conversi¢n de estilo de funci¢n
i can't use the Ansi version with Qt and i dont know why,
i tried the ex version but not seems to work too:
LPCSTR foo = "SomeResourceName"; WORD myVariable; HRSRC res = FindResourceExA(NULL, foo, RT_RCDATA,myVariable);
error:
error: C2664: 'HRSRC FindResourceExA(HMODULE,LPCSTR,LPCSTR,WORD)' : el argumento 3 no puede convertirse de 'LPWSTR' a 'LPCSTR' the types are not related; the conversion require reinterpret_cast, conversi¢n of style of C or conversi¢n of style of function
-
Hi
Dont it complain about param 3 ?error: C2664: 'HRSRC FindResourceA(HMODULE,LPCSTR,LPCSTR)' : el argumento 3 no puede convertirse de 'LPWSTR' a 'LPCSTR'
so it seems its RT_RCDATA that it barf at ?
-
RT_RCDATA
is a macro that expands toMAKEINTRESOURCE(10)
, which expands to eitherMAKEINTRESOURCEA(10)
orMAKEINTRESOURCEW(10)
when UNICODE is defined or not.
So just replaceRT_RCDATA
in my exmples with eitherMAKEINTRESOURCEA(10)
orMAKEINTRESOURCEW(10)
. -
@Chris-Kawa Thanks a lot your answer solve my dude thanks a lot. The system of resources of Qt is awesome and more easy to use so it's better. Anyways i was trying to understand more about windows api and with these explications i understand now thanks.