StrRetToStr
-
hi, i want to use the function StrRetToStr(...) in a Console Application, i have included the corresponding file Shlwapi.h and the library Shlwapi.lib but the function isn't declared in them ? is this a bad joke from microsoft ?? Does this function exist at all ? Thanks in advance !
-
hi, i want to use the function StrRetToStr(...) in a Console Application, i have included the corresponding file Shlwapi.h and the library Shlwapi.lib but the function isn't declared in them ? is this a bad joke from microsoft ?? Does this function exist at all ? Thanks in advance !
Hi, What IE version u have ? Use the func below. Check if same thing happening with this also StrRetToBuf The chosen One :)
-
Hi, What IE version u have ? Use the func below. Check if same thing happening with this also StrRetToBuf The chosen One :)
-
What @ IE version u r having on ur machine? The chosen One :)
-
hi, i want to use the function StrRetToStr(...) in a Console Application, i have included the corresponding file Shlwapi.h and the library Shlwapi.lib but the function isn't declared in them ? is this a bad joke from microsoft ?? Does this function exist at all ? Thanks in advance !
Which version of Shlwapi.h are you using? The one that comes with VS6 or the one that comes with the Platform SDK. Shlwapi.h that came with VS6 doesn't support this function, you'll need to be including the one which came with the Platform SDK. Michael 'Logic, my dear Zoe, merely enables one to be wrong with authority.' - The Doctor: The Wheel in Space
-
Which version of Shlwapi.h are you using? The one that comes with VS6 or the one that comes with the Platform SDK. Shlwapi.h that came with VS6 doesn't support this function, you'll need to be including the one which came with the Platform SDK. Michael 'Logic, my dear Zoe, merely enables one to be wrong with authority.' - The Doctor: The Wheel in Space
-
hi, i want to use the function StrRetToStr(...) in a Console Application, i have included the corresponding file Shlwapi.h and the library Shlwapi.lib but the function isn't declared in them ? is this a bad joke from microsoft ?? Does this function exist at all ? Thanks in advance !
All these functions are exported from Shlwapi.dll (7/24/2002) as (ASCII: StrRetToBufA, UNICODE: StrRetToBufW etc) If not included in your version of Shlwapi.h you could consider checking in the latest W32 SDK (note that the standard MSDevStudio files are usually quite out of date). Quick solution might be to add its declaration yourself in your code. You would need of course to make sure that the right version of Shlwapi.dll is installed on the target system