Windows XP Error: The ordinal 344 could not be located in the dynamic link library comctl32.dll

timxjog

New Member
Hi Everyone

I have just moved a program from a Windows Vista machine to a Windows XP machine and as a result I am getting the following error:

"The ordinal 344 could not be located in the dynamic link library comctl32.dll"

Does anyone know of a hack using a hex editor for sorting out this error message?

Thank you very much.

Kind regards

Tim
 
comctl32.dll is part of the operating system and this DLL is different for each version of Windows. DLL functions can be exported by name or by ordinal (to save space) If the ordinal is missing, it usually means the entire function is missing or not present in XP. You wont be able modify the DLL to fix this.
 
Back
Top