Modifications to FindTag tool for use with TextPad 5

Instructional HowTos, posted by users. No questions here please.

Moderators: AmigoJack, helios, bbadmin, Bob Hansen, MudGuard

Post Reply
gwitzel
Posts: 1
Joined: Fri Apr 27, 2007 11:43 pm

Modifications to FindTag tool for use with TextPad 5

Post by gwitzel »

The FindTag add-on tool for TextPad will not work after upgrading from 4.x to 5.x. The FindTag source code and MSVC project files are available from http://findtag.sourceforge.net/ and the following changes will make it work with TextPad5:

FindTag.cpp:
< HSZ hszServSrv = DdeCreateStringHandle(dwInstID, "TextPad", CP_WINANSI);
---
> HSZ hszServSrv = DdeCreateStringHandle(dwInstID, "TextPad.5.0", CP_WINANSI);

RegistryEntry.cpp:
< TCHAR szRegKey[] = _T("Software\\Helios\\TextPad 4\\Tags");
---
> TCHAR szRegKey[] = _T("Software\\Helios\\TextPad 5\\Tags");

Compile with MS Visual C++ and follow the FindTag installation instructions. If TextPad 4.x was already configured for the FindTag tool, the configuration will be copied to TextPad 5.
chrissv
Posts: 3
Joined: Thu Jan 07, 2010 6:10 pm

Post by chrissv »

Can someone make available the FindTag executable modified for TextPad 5.0? I tried to get the source from sourceforge, but had a lot of problems.

Thanks - Steven
kazoo
Posts: 1
Joined: Fri Jun 03, 2011 10:19 am

Post by kazoo »

FindTag Visual Studio 2010 Project Files is here.

http://www.mediafire.com/?o3ono9ve8dao7dx

I hope somebody care this project.
Post Reply