Hello,
I have made some modifies to make it more usable,complet and simple.
cannot compile on my machine, i think some files -includes or libs- are missing ?
like
translate.inc
tom.sdk
Yves uses his "ready-to-use SDK" set of include files
you can install his SDK or maybe change the INCLUDE's
For include files see this post
http://masm32.com/board/index.php?topic=563.msg4563#msg4563 (http://masm32.com/board/index.php?topic=563.msg4563#msg4563)
Have also a look on others include in the windows.inc subforum
I have downloaded the cab file
But i still get the error message:
TextDraw.obj : error LNK2001: unresolved external symbol _FindTextA@4
TextDraw.exe : fatal error LNK1120: 1 unresolved externals
The FindText is one of those named api function used also in the interface.This put ml in trouble and the linker search for this function even if it is not in use in the proc.
You have two choice:
Just add the comdlg32.lib with the FindText function.
Or modify the name of the functions in the interfaces as follow.
Actually:
Quote
E:\sdkrc7\Mshtmlc.sdk
10927 : findText comethod5 ?
27150 : FindText comethod5 ?
28341 : FindText comethod5 ?
E:\sdkrc7\TOM.sdk
366 : FindText comethod5 ?
460 : FindText comethod5 ?
E:\sdkrc7\UIAutomationClient.sdk
1761 : FindText comethod5 ?
E:\sdkrc7\UIAutomationCore.sdk
1765 : FindText comethod5 ?
The modify of the tom.sdk will be enough.
He is the only one header of textdraw using FindText in it's interface
Quote
E:\sdkrc7\Mshtmlc.sdk
10927 : findText comethod5 ?
27150 : aFindText comethod5 ?
28341 : aFindText comethod5 ?
E:\sdkrc7\TOM.sdk
366 : aFindText comethod5 ?
460 : aFindText comethod5 ?
E:\sdkrc7\UIAutomationClient.sdk
1761 : aFindText comethod5 ?
E:\sdkrc7\UIAutomationCore.sdk
1765 : aFindText comethod5 ?
i have added comdlg32.lib, and finally it works no errors but also there is no second line ::)
You have a richedit20.dll version 2 instead of version 3.This don't allow the proc to work.I have verify this with your dll in the directory of the proc.
I don't know wich system you have (very old,mine is XP SP3),try windows update.
Perhaps can you find a separate download for it,many dll can be found in separate download.
thanks ToutEnMasm
i have downloaded Richedit20.dll v3.1 from:
http://thehandofagony.com/alex/dll/riched20.dll
then i compiled the source and it is now working like mercedes amg ;)
(and i also use XP SP3)
Wrong thread, sorry!