08-29-2006, 02:03 PM
One of the windows I need to talk to is of class Ter32Class which apparently is a TE Edit Control, an editor that doesn't inherit from the standard RichText Control and so doesn't respond to EM_*** commands the way I'd hoped for.
The published method of talking to this control is via it's DLL
Here is the visual basic declaration needed to access one function in the DLL.
Public Declare Function TerSearchReplace Lib "ter14.dll" (ByVal hWnd As Long, ByVal SearchText As String, ByVal ReplaceText As String, ByVal flags As Long, ByVal StartPos As Long, EndPos As Long, BufSize As Long) As Long
How can I translate this to QuickMacros?
Where is the appropriate place for me to place the needed declarations?
Should I make a new folder within SYS?
Is this what the User folder is for?
Thanks
The published method of talking to this control is via it's DLL
Here is the visual basic declaration needed to access one function in the DLL.
Public Declare Function TerSearchReplace Lib "ter14.dll" (ByVal hWnd As Long, ByVal SearchText As String, ByVal ReplaceText As String, ByVal flags As Long, ByVal StartPos As Long, EndPos As Long, BufSize As Long) As Long
How can I translate this to QuickMacros?
Where is the appropriate place for me to place the needed declarations?
Should I make a new folder within SYS?
Is this what the User folder is for?
Thanks