Search found 7289 matches: method

Return to advanced search

Re: colorize btnbmp with diagonal

... With Truepixel https://i.postimg.cc/2jnZy358/si.png the space between the lines is greater if the dialog is truepixel Is there a method to get the lines closer together? or maybe they are the same and I see them as different :D
by Silvio.Falconi
Fri Apr 19, 2024 11:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: colorize btnbmp with diagonal
Replies: 9
Views: 243

Re: FWH 2006: XBrowse : Own built-in Buttonbar

... vueve a ordernar, podria verificar si es asi o estoy haciendo algo mal ? Please modify xbrowse and apply this fix. Please locate this line in the METHOD HeaderLButtonUp( nMRow, nMCol, nFlags ) CLASS TXBrwColumn      if nMRow <= ::oBrw:nHeaderHeight  ; Change this line as: ...
by nageswaragunupudi
Tue Apr 16, 2024 3:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2006: XBrowse : Own built-in Buttonbar
Replies: 14
Views: 2220

Re: New txbrowse

... I make somethig with Override but I can add or modify a method but I not Know how create new datas
by Silvio.Falconi
Fri Apr 12, 2024 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 3
Views: 216

Re: Centrar texto VERTICALMENTE

... 0.5 ; SAY AllTrim(::oTDbfDatAmp:REGMER) FONT ::oFnt_Arial6V COLOR CLR_BLACK I want to center the text at half height of the page. Note: New Method for de Printer.PRG METHOD CmtrTextToVCenter( cText, oFont ) INLINE ; ( ::CmVertPhySize() / 2 ) + ::CmtrGetTextWidth( cText, oFont ) / 2 Thank ...
by nageswaragunupudi
Tue Apr 09, 2024 4:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Centrar texto VERTICALMENTE
Replies: 12
Views: 443

Re: Centrar texto VERTICALMENTE

... 0.5 ; SAY AllTrim(::oTDbfDatAmp:REGMER) FONT ::oFnt_Arial6V COLOR CLR_BLACK I want to center the text at half height of the page. Note: New Method for de Printer.PRG METHOD CmtrTextToVCenter( cText, oFont ) INLINE ; ( ::CmVertPhySize() / 2 ) + ::CmtrGetTextWidth( cText, oFont ) / 2 Thank ...
by FiveWiDi
Tue Apr 09, 2024 3:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Centrar texto VERTICALMENTE
Replies: 12
Views: 443

Re: FWHMYSQL Insert failing

... ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8_unicode_ci  This is the SQL generated and executed by the Insert(...) method above: INSERT INTO `testinsert` ( `ftext`,`fnum` ) VALUES ( 'one',1 )
by nageswaragunupudi
Sat Apr 06, 2024 1:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMYSQL Insert failing
Replies: 6
Views: 395

Re: Question about wfReadUrl()

... which I use to check if the url is working, is working fine with the prefix "http", but results into an error "no exported method" with the prefix "https". This is the code how I want to check my url's:   DO CASE      CASE !wfReadURL("http://www.ma-consult.be") ...
by driessen
Fri Apr 05, 2024 8:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about wfReadUrl() - SOLVED
Replies: 20
Views: 2747

Re: xbrowse SelectRow method

Or, if we want to deselect a specific row number, which is not the current row, we can do like this. if ( nAt := AScan( oBrw:aSelected, nRecNo ) ) > 0HB_ADel( oBrw:aSelected, nAt, .t. )endifoBrw:Refresh() We do not recommend this, but this is possible. Nages, usin...
by Silvio.Falconi
Mon Apr 01, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 678

Re: xbrowse SelectRow method

Or, if we want to deselect a specific row number, which is not the current row, we can do like this.
Code: Select all  Expand view
if ( nAt := AScan( oBrw:aSelected, nRecNo ) ) > 0
HB_ADel( oBrw:aSelected, nAt, .t. )
endif
oBrw:Refresh()

We do not recommend this, but this is possible.
by nageswaragunupudi
Sun Mar 31, 2024 5:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 678

Re: xbrowse SelectRow method

oBrw:SelectRow( 2 ) toggles selection of the current row in focus.
by nageswaragunupudi
Sun Mar 31, 2024 5:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 678

xbrowse SelectRow method

If I made to select all record on xbrowse

oBrw:SelectRow( 4 )

and the I wish deselect only one record

If I made oBrw:SelectRow( 0 ) it deselect all

how resolve ?
by Silvio.Falconi
Sat Mar 30, 2024 3:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 678

Re: Problem with datepick

nageswaragunupudi wrote:
Code: Select all  Expand view
LOCAL dDate := ddatacambio:GetDate()
 



Here is the mistake.
"ddatacambio" is a date value and date value can not have any method.


opps - corrected
STATIC FUNCTION DoSwitch( ddatacambio, oBtnGetExchange,aGet )
LOCAL dDate := aget[1]:GetDate()
by Silvio.Falconi
Tue Mar 26, 2024 1:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with datepick - Resolved -
Replies: 2
Views: 522

Re: Problem with datepick

Code: Select all  Expand view
LOCAL dDate := ddatacambio:GetDate()
 



Here is the mistake.
"ddatacambio" is a date value and date value can not have any method.
by nageswaragunupudi
Tue Mar 26, 2024 12:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with datepick - Resolved -
Replies: 2
Views: 522

Re: Another for Btnbmp

Mr Silvio Please make a small modificatin in btnbmp.prg: Please locate these lines in the method PaintBorder            RoundBox( ::hDC, 1, 1, ::nWidth - 2, ::nHeight - 1, nRound, nRound, XEval( ::nClrBorder, ::lMover, Self ) )            if ::lFocused  ...
by Silvio.Falconi
Tue Mar 26, 2024 11:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4930

Re: Another for Btnbmp

Mr Silvio Please make a small modificatin in btnbmp.prg: Please locate these lines in the method PaintBorder            RoundBox( ::hDC, 1, 1, ::nWidth - 2, ::nHeight - 1, nRound, nRound, XEval( ::nClrBorder, ::lMover, Self ) ...
by nageswaragunupudi
Tue Mar 26, 2024 9:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4930
Next

Return to advanced search