The MASM Forum

General => The Workshop => Topic started by: TouEnMasm on August 28, 2012, 07:09:17 PM

Title: An implemention of ITextHost
Post by: TouEnMasm on August 28, 2012, 07:09:17 PM
Hello,
I have made some modifies to make it more usable,complet and simple.
Title: Re: An implemention of ITextHost
Post by: bluedevil on August 29, 2012, 06:45:10 AM
cannot compile on my machine, i think some files -includes or libs- are missing ?
like
translate.inc
tom.sdk
Title: Re: An implemention of ITextHost
Post by: dedndave on August 29, 2012, 10:49:51 AM
Yves uses his "ready-to-use SDK" set of include files
you can install his SDK or maybe change the INCLUDE's
Title: Re: An implemention of ITextHost
Post by: TouEnMasm on August 29, 2012, 03:43:28 PM

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
Title: Re: An implemention of ITextHost
Post by: bluedevil on September 10, 2012, 06:56:37 AM
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
Title: Re: An implemention of ITextHost
Post by: TouEnMasm on September 10, 2012, 04:11:04 PM
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 ?


Title: Re: An implemention of ITextHost
Post by: bluedevil on September 11, 2012, 06:03:41 AM
i have added comdlg32.lib, and finally it works no errors but also there is no second line ::)
Title: Re: An implemention of ITextHost
Post by: TouEnMasm on September 11, 2012, 03:24:54 PM

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.
Title: Re: An implemention of ITextHost
Post by: bluedevil on September 12, 2012, 04:40:34 AM
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)
Title: Re: An implemention of ITextHost
Post by: japheth on September 22, 2012, 10:46:40 PM
Wrong thread, sorry!