Search found 27 matches: dlgfind

Return to advanced search

Re: Search in RichEdit 5

... that "commdlg_FindReplace" also work with RTF Problem : Fivewin have "only" CLASS TDlgFind ( c:\fwh\source\classes\dlgfind.prg ) --- have "begin" to re-write HMG for FiveWin to REDIFEINE "commdlg_FindReplace" FUNCTION DlgFindReplace( cFind, ...
by Jimmy
Fri Oct 27, 2023 5:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search in RichEdit 5
Replies: 2
Views: 241

Re: Error Sample c:\fwh\samples\dlgfind.prg

// C:\FWH...\SAMPLES\DLGFIND2.PRG Para FWH22.06 o Superior. By Jimmy.// Class TDlgFind test#Include "FiveWin.ch"FUNCTION Main()   LOCAL oWnd, oGet, cMemo := "This is a test in GET"   LOCAL bSearch, cFind := "test"        ...
by karinha
Mon Apr 03, 2023 10:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error Sample c:\fwh\samples\dlgfind.prg
Replies: 3
Views: 279

Re: Error Sample c:\fwh\samples\dlgfind.prg

hi, here working CODE // Class TDlgFind test#include "FiveWin.ch"function Main()   local oWnd, oGet, cMemo := "This is a test in GET"   local bSearch, cFind := "test"                      // add this   DEFINE WINDOW oWnd   @ 2, 2 GET oGet VAR cMemo SIZE 200, 25 ...
by Jimmy
Mon Apr 03, 2023 8:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error Sample c:\fwh\samples\dlgfind.prg
Replies: 3
Views: 279

Re: Concept of REDEFINE for Dummy

... change ID while it is from Windows ;) i use that "search/replace" Dialog which e.g. Notepad.EXE have based on c:\fwh\source\classes\dlgfind.prg i found out that i can REDEFINE "Windows standard Common Dialog" it have to do with (undocumented) Function RegDialog() as i want ...
by Jimmy
Sun Apr 02, 2023 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Concept of REDEFINE for Dummy
Replies: 13
Views: 816

Re: how to get "Userdef" EVENT for ACTION

hi, have look into c:\fwh\source\classes\dlgfind.prg and found REDEFINE / ACTION ... hm ... :idea: have made a copy and change into   //    RegDialog( ::hWnd := FindText( cText, oWnd:hWnd, @nFindMsgString ) )   RegDialog( ::hWnd := FindReplaceDlg( ...
by Jimmy
Wed Mar 29, 2023 8:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get "Userdef" EVENT for ACTION
Replies: 5
Views: 394

Re: Error Sample c:\fwh\samples\dlgfind.prg

Look, c:\fwh..\samples\fivedit.prg

Regards, saludos.
by karinha
Tue Mar 28, 2023 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error Sample c:\fwh\samples\dlgfind.prg
Replies: 3
Views: 279

Error Sample c:\fwh\samples\dlgfind.prg

... from: => NUMTOHEX( 0 ) Called from: .\source\function\VALBLANK.PRG => FW_CLRTOHTML( 318 ) Called from: .\source\classes\DIALOG.PRG => TDLGFIND:HTML( 421 ) Called from: .\source\classes\DIALOG.PRG => TDLGFIND:INITIATE( 955 ) Called from: .\source\classes\DLGFIND.PRG => TDLGFIND:NEW( ...
by Jimmy
Tue Mar 28, 2023 4:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error Sample c:\fwh\samples\dlgfind.prg
Replies: 3
Views: 279

Re: Ayuda DLL

... referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|MGET Error: Unresolved external '_HB_FUN_FINDTEXT' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DLGFIND Error: Unresolved external '_HB_FUN_GETWINTXTLENGHT' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|MGET Error: Unresolved external '_HB_FUN_MGETREPLACE' ...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6328

Re: problem w with FWH 16.12 and xHB.com

... = [Source\Classes\dde.prg] MYC_FLAGS = MYDEFINES = MYPRG_FLAGS = [Source\Classes\dialog.prg] MYC_FLAGS = MYDEFINES = MYPRG_FLAGS = [Source\Classes\dlgfind.prg] MYC_FLAGS = MYDEFINES = MYPRG_FLAGS = [Source\Classes\edit.prg] MYC_FLAGS = MYDEFINES = MYPRG_FLAGS = [Source\Classes\fget.prg] MYC_FLAGS ...
by kajot
Sun Dec 25, 2016 9:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem w with FWH 16.12 and xHB.com
Replies: 11
Views: 4960

Re: To Antonio :dlgfind

Silvio,

We are focused on publishing FWH 16.04

Once it gets published I will try to help you with your requirement
by Antonio Linares
Thu May 12, 2016 7:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio :dlgfind
Replies: 4
Views: 577

Re: To Antonio :dlgfind

or U can add a method or parameter on Tdlgfind to call FINDREPLACE()

local oDlg := TDlgFind():New( cText, oWnd, bSearch ,lreplace,ctexxtreplace)

just an idea...
by Silvio.Falconi
Wed May 11, 2016 11:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio :dlgfind
Replies: 4
Views: 577

Re: To Antonio :dlgfind

but the dialog findreplace must have another parameter .. ctext ..ctextoreplace
by Silvio.Falconi
Wed May 11, 2016 11:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio :dlgfind
Replies: 4
Views: 577

Re: To Antonio :dlgfind

Silvio,

It seems as it is the same resource as we use in source\winapi\findtext.c

#define FINDMSGSTRING L"commdlg_FindReplace"
by Antonio Linares
Wed May 11, 2016 11:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio :dlgfind
Replies: 4
Views: 577

To Antonio :dlgfind

ad dlg find how I can make to have also the dialog replace native of windows ?
I saw there is hb_regexReplace
by Silvio.Falconi
Wed May 11, 2016 11:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio :dlgfind
Replies: 4
Views: 577

Recompilar FiveHMX para xhb.com

... "Obj\control.obj" "Obj\cursor.obj" "Obj\database.obj" "Obj\dde.obj" "Obj\dialog.obj" "Obj\dlgfind.obj" "Obj\edit.obj" "Obj\fget.obj" "Obj\fline.obj" "Obj\folder.obj" "Obj\font.obj" "Obj\group.obj" ...
by russimicro
Mon Dec 01, 2014 5:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Recompilar FiveHMX para xhb.com
Replies: 2
Views: 818
Next

Return to advanced search