Search found 83 matches

by wartiaga
Fri Jan 31, 2020 12:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: F1 should open HTML file on internet
Replies: 3
Views: 675

Re: F1 should open HTML file on internet

Hello, I want to change my helpfile system to HTML. How can I call from "F1" a specified web page? Thank you in advance Otto DEFINE BUTTON FILE ".\bitmaps2\P2.bmp" OF oBar ; ACTION ; TOOLTIP { || SetHelpFile("test"), WndMain():nHelpID := "test" , cToolTip := ...
by wartiaga
Tue Jan 21, 2020 12:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xml in dialog
Replies: 7
Views: 1179

Re: xml in dialog

nageswaragunupudi wrote:You may also try the built-in function of FWH

Code: Select all

FW_XmlView( cXmlFile )
 
Mr. Otto's program appears to be more advanced than this.
Thank you Mr. Nages. Fw_XmlView() allows change some lines color?
by wartiaga
Sun Jan 19, 2020 4:46 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xml in dialog
Replies: 7
Views: 1179

Re: xml in dialog

Otto wrote:This is a xBrowse!
Hi Otto,

I think this solve my problem, but i want to change a color with some tags.
Do you put the code here? Thank you so mutch
by wartiaga
Sun Jan 19, 2020 3:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: METRO DLG
Replies: 3
Views: 579

Re: METRO DLG

Otto wrote:Hello,
Look how you can simplify your source with HARBOURINO style.
Best regards
Otto
Image
Great work! Is a free solution?
by wartiaga
Sun Jan 19, 2020 3:23 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xml in dialog
Replies: 7
Views: 1179

xml in dialog

Hi,

Is there a way to display the contents of an xml in a dialog like the internet explorer does with indentations and change the color of some words?

Thanks in advance.
by wartiaga
Fri Jan 03, 2020 4:42 pm
Forum: FiveWin for Harbour/xHarbour
Topic: PICTURE "@Z"
Replies: 7
Views: 892

Re: PICTURE "@Z"

The standard behaviour of Clipper and (x)Harbour without FWH is that "0.00" is displayed only in the Get having focus. Gets not having focus display blanks only and not digits. But FWH till version 19.12 displays "0.00" in all Gets whether having focus or not. This is fixed in 2...
by wartiaga
Wed Dec 11, 2019 1:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Buttonbar help
Replies: 6
Views: 807

Re: Buttonbar help

cnavarro wrote:I think method Move allow change size, not?
Move( nTop, nLeft, nWidth, nHeight, lRepaint )
Thank you! It's work! Do you know how i display the buttonbar with border? oBar10:nStyle := WS_BORDER not work.
by wartiaga
Tue Dec 10, 2019 7:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Buttonbar help
Replies: 6
Views: 807

Re: Buttonbar help

cnavarro wrote:Also, try with oBar10:Move( ..... ) METHOD ( on init clause )
Move works but just move the bar not change the size.
by wartiaga
Tue Dec 10, 2019 6:22 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Buttonbar help
Replies: 6
Views: 807

Re: Buttonbar help

Hi, I have a buttonbar in resource but the size after compile dont respect the resource size, see the image below: In my code I use this: REDEFINE BUTTONBAR oBar10 ID 100 OF oDlg20 How I can adjust? Thanks in advance Try with oBar10:nRight := 300 ( or any value ), after the REDEFINE If it does not ...
by wartiaga
Tue Dec 10, 2019 5:29 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Buttonbar help
Replies: 6
Views: 807

Buttonbar help

Hi,

I have a buttonbar in resource but the size after compile dont respect the resource size, see the image below:

Image

In my code I use this:

REDEFINE BUTTONBAR oBar10 ID 100 OF oDlg20

How I can adjust?

Thanks in advance
by wartiaga
Tue Dec 03, 2019 2:23 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer
Replies: 9
Views: 1219

Re: xbrowser footer

oBrw:KeyCount() is the same as ( oBrw:cAlias )->( OrdKeyCount() ) OrdKeyCount() is a (x)Harbour function. By default OrdKeyCount() respects Scopes and Filters but includes deleted records also. This is what we all should know. If we want OrdKeyCount() not to include deleted records, we should set f...
by wartiaga
Tue Dec 03, 2019 2:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer
Replies: 9
Views: 1219

Re: xbrowser footer

cnavarro wrote:Try with

Code: Select all

oBrw:aCols[ 1 ]:nFooterType := AGGR_COUNT
oBrw:aCols[ 1 ]:bSumCondtion := { |v,o| ( oBrw:cAlias ) -> ( !Deleted() ) }
 
Thank you!
by wartiaga
Mon Dec 02, 2019 1:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer
Replies: 9
Views: 1219

Re: xbrowser footer

Hello, Why this: Lista2:aCols[1]:cFooter := { || Ltrim( Str( Lista2:KeyNo() ) ) + " / " + LTrim( Str( Lista2:KeyCount() ) ) } Lista2:Refresh() Show me {||...} in footer? Thanks in advance. Use this Lista2:aCols[1]:bFooter   := { || Ltrim( Str( Lista2:KeyNo() ) ) + " / " + LTrim(...
by wartiaga
Mon Dec 02, 2019 12:54 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer
Replies: 9
Views: 1219

xbrowser footer

Hello,

Why this:

Lista2:aCols[1]:cFooter := { || Ltrim( Str( Lista2:KeyNo() ) ) + " / " + LTrim( Str( Lista2:KeyCount() ) ) }
Lista2:Refresh()

Show me {||...} in footer?

Thanks in advance.
by wartiaga
Fri Oct 25, 2019 1:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowser footer picture
Replies: 3
Views: 727

Re: xbrowser footer picture

nageswaragunupudi wrote:This is a bug in xbrowse.prg

Please set

Code: Select all

Lista2:aCols[7]:cEditPicture := "@e 999,999.99"
 
ALSO.
Then footer picture works correctly.
Thank you Mr. Nages.