Search found 142 matches

by Frank Demont
Wed May 10, 2006 2:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ways to save report to a file and easily open
Replies: 52
Views: 16454

Richard, I suppose when we distribute a aplication , we have no control which printers the user installs , or downloads. So , i give the user only 'the information' that such tools can be usefull , he has to install it himself , it has nothing to do with mine distribution. It is not mine responbilit...
by Frank Demont
Mon Apr 17, 2006 9:50 am
Forum: FiveWin for Harbour/xHarbour
Topic: filtering using set scope..pls help
Replies: 3
Views: 941

cFilter := "me_mc_serl = "+ x

bFilter = "{||"+cFilter+"}"

DBSETFILTER(bFilter,cFilter)

bFilter isn't a codeblock , macro expansion ?????????????


Frank
by Frank Demont
Fri Mar 24, 2006 7:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to enforce all Validations
Replies: 4
Views: 1105

You can make a construction as :

LOKAL lok := .T.
Aeval(oDlg:aControls,{|j|lok := lok .AND. EVAL(j:bValid)})

IF lOk is .F. , at least one valid clausule hes returned .F.

Frank
by Frank Demont
Fri Mar 17, 2006 12:19 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Richtext.prg
Replies: 7
Views: 1531

Yes , it works very nice , very easy to use , fantastic results .

Frank
by Frank Demont
Fri Mar 17, 2006 11:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: Richtext.prg
Replies: 7
Views: 1531

Antonio,

Sorry antonio , i overlooked that in the main aplication the variable is an array , so i had to put txt[1]

Frank
by Frank Demont
Fri Mar 17, 2006 11:41 am
Forum: FiveWin for Harbour/xHarbour
Topic: Richtext.prg
Replies: 7
Views: 1531

Antonio,

Of course i did it , it see no difference between the two values

Frank
by Frank Demont
Fri Mar 17, 2006 11:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: Richtext.prg
Replies: 7
Views: 1531

Antonio,

Of course i did it , it see no difference between the two values

Frank
by Frank Demont
Fri Mar 17, 2006 9:55 am
Forum: FiveWin for Harbour/xHarbour
Topic: Richtext.prg
Replies: 7
Views: 1531

Richtext.prg

Hello, I try to use RTF in mine main aplication. First I convert memo files in RTF format , txt in the example . In a testprogram next routine works : DEFINE WINDOW oWnd FROM 0, 0 TO 300, 827 PIXEL ; MDICHILD OF oWndMain:oWnd ; TITLE "TRichEdit" ; COLOR CLR_BLACK, nil @ 0, 0 RICHEDIT oRTF ...
by Frank Demont
Fri Mar 10, 2006 2:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: shell execute , second try
Replies: 1
Views: 588

shell execute , second try

Setting RTF to Wordpad MFC-aplication from configuration

shellexecute( oWnd:hwnd,"open",rtf-file,....)

has no effect.

Resetting RTF extension to microsoft word , and it works !!!!


How can we change this behaviour for shellexecute ?????

Frank
by Frank Demont
Fri Mar 10, 2006 2:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Shellexecute
Replies: 0
Views: 371

Shellexecute

Hello,

I try to use shellexecute with a rtf-file , hoping that wordpad.exe will be called.

So , i have (trying to translate from dutch) :

1) Configuration
2) Map options
3) Third tab blad : file types
by Frank Demont
Thu Mar 09, 2006 12:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Working with Rich Edit
Replies: 2
Views: 789

Temporary work around

@ 0, 0 RICHEDIT oRTF VAR cRTF OF oWnd ; __ObjModMethod(oRtf,"Find",@Find()) FUNCTION Find( cFind, lDown, lCase, lWord ) LOCAL Self := HB_QSelf() local nIndex := REFindText( self:hWnd, cFind, lDown, lCase, lWord ) if nIndex != -1 RESetSelection( self:hWnd, nIndex + Len( cFind ), nIndex ) se...
by Frank Demont
Thu Mar 09, 2006 12:23 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Working with Rich Edit
Replies: 2
Views: 789

Working with Rich Edit

Antonio, I am succesfull with using this class , printing multiple rtf- files Now , i have a routine to convert txt-files with esc-sequences to rtf format , it works very fine except : I have to use oRtf:find(......) . When nothing is found (i have to loop trought the text till no escape sequenses a...
by Frank Demont
Tue Mar 07, 2006 6:42 pm
Forum: FiveWin for Harbour/xHarbour
Topic: RTF RePrintBox()
Replies: 10
Views: 2230

Antonio

Xharbour , commercial version
by Frank Demont
Tue Mar 07, 2006 1:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: RTF RePrintBox()
Replies: 10
Views: 2230

Antonio

Can you also send it to me (english) ?

Frank
by Frank Demont
Mon Mar 06, 2006 2:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Help: Antonio and FWH 2.7 + xHB Comercial users
Replies: 3
Views: 1078

You have to link in (till new version from xharbour) :


#pragma begindump
#include "hbapi.h"
HB_EXPORT PHB_SYMB hb_dynsymSymbol( PHB_DYNS pDynSym )
{
return pDynSym->pSymbol;
}
#pragma enddump