Search found 1048 matches

by byte-one
Tue Nov 27, 2018 12:33 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Question to XBROWSE 1810
Replies: 4
Views: 668

Question to XBROWSE 1810

In the new version 1810 i see a dialog to input data if i use SetColsAsRows(). But i will handle as before! What to do to get the behavior as in 1801?
by byte-one
Thu Nov 01, 2018 6:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: PEN oPen
Replies: 7
Views: 707

Re: PEN oPen

The thickness from a pen must be calculated in dependence to the used printer! (or give the OF oPrint clausula as ukoenig say!)
by byte-one
Wed Oct 24, 2018 9:38 am
Forum: FiveWin for Harbour/xHarbour
Topic: BUG in TToast!?
Replies: 12
Views: 703

Re: BUG in TToast!?

Cristobal, i have changed the code. Now it seems to functioning. Please see. METHOD Destroy() CLASS TToast    if !Empty( ::oFontHdr )       ::oFontHdr :End()    endif    if !Empty( ::oFontHdr2 )       ::oFontHdr2:End()    endif    if !Empty( ::oFontBody )       ::oFontBody:End()    endif    if !Empt...
by byte-one
Tue Oct 23, 2018 10:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: BUG in TToast!?
Replies: 12
Views: 703

Re: BUG in TToast!?

I am using NewToast() but no ok. If i use ttoast on start from the program in the clausula ON INIT with a bReturn the program freezes!
by byte-one
Tue Oct 23, 2018 9:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: BUG in TToast!?
Replies: 12
Views: 703

Re: BUG in TToast!?

FWH 18.04
I see, you use TToast():NewToast(….) i use TTost():New(….)
by byte-one
Tue Oct 23, 2018 9:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: BUG in TToast!?
Replies: 12
Views: 703

Re: BUG in TToast!?

I will at end of my programm show a TToast-alert with a delay of 5 seconds. But the ending from my program waits not to the end from the TToast. So i pack the code from ending the program in the bReturn-codeblock but no call to this codeblock is executed!
by byte-one
Tue Oct 23, 2018 8:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: BUG in TToast!?
Replies: 12
Views: 703

BUG in TToast!?

If i use the DATA bReturn this codeblock will never calling. I see in the source of this class that ::end() is using and not :destroy(), also the method :destroy() with the bReturn-codeblock is ignored!
by byte-one
Sat Aug 11, 2018 10:14 am
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Border on cells
Replies: 27
Views: 3548

Re: XBROWSE Border on cells

Mr. Rao, can you please provide a sample, that show only the border different to the normal view (Text, Data,..) of the cell.
by byte-one
Sat Aug 11, 2018 10:11 am
Forum: FiveWin for Harbour/xHarbour
Topic: Move a array-item
Replies: 2
Views: 435

Re: Move a array-item

Thanks, Mr. Rao! Works perfect.
by byte-one
Tue Jul 31, 2018 10:55 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 1805 - oBrw:SetTree( [<nLevels>] ) -> Automatic Trees
Replies: 15
Views: 4422

Re: FWH 1805 - oBrw:SetTree( [<nLevels>] ) -> Automatic Trees

Original:

Code: Select all

oBrw:SetTree( oTree,  [aBitmaps], [bOnSkip], [aCols] )
Fraxzi, you are using:

Code: Select all

oBrw:SetTree( 3, { 0x30082, 0x30084, 0x20097 } )
by byte-one
Mon Jul 16, 2018 7:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Border on cells
Replies: 27
Views: 3548

XBROWSE Border on cells

Mr. Nages, can i draw a border with a specific color and width around a cell but only on cells with edit-functions (get, listbox, etc.)
by byte-one
Mon Jul 16, 2018 7:37 am
Forum: FiveWin for Harbour/xHarbour
Topic: Move a array-item
Replies: 2
Views: 435

Move a array-item

Hello all!
Has anyone a function to move a array-item to a other position in this array?
by byte-one
Tue Jun 26, 2018 8:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 18.04
Replies: 12
Views: 2261

Re: New FWH 18.04

Code: Select all

REDEFINE GET obetrag VAR finanz->betrag ID 107 OF oDialog PICTURE PIC_BETRAG MESSAGE "Betrag" UPDATE COLOR NSAYFARBE_ALL_INVERS,NSAYFARBE_ALL FONT oFont_konto WHEN larbeit .and. !finanz->check1
by byte-one
Mon Jun 25, 2018 12:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 18.04
Replies: 12
Views: 2261

Re: New FWH 18.04

Mr. Rao,
I have tested for now oGet:lRightToLeft := .T. on get from resources.
Is functioning but the foreground-color is not respecting COLOR-Clause (always black).
by byte-one
Tue Jun 19, 2018 10:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: Dialog controls are flickering when resized..
Replies: 34
Views: 6686

Re: Dialog controls are flickering when resized..

You should not call uDialogGradient( hDC, oDlg, { { 1, RGB( 216, 230, 238 ), RGB( 103, 154, 194 ) } }, .F. ) in ON PAINT. Every change of size from dialog call ON PAINT and so every move from 1 pixel the function is called. -> And dialog is flickering!