Search found 38 matches: nold

Return to advanced search

Re: ListBox Input Field Scrolling........

... { || nItem := 1 } oBrw:bGoBottom := { || nItem := Len(aAcc_No) } oBrw:SetArray( aAcc_No, aAcc_Desc, aTrn_AmtD, aTrn_AmtC ) oBrw:bSkip := { |nWant, nOld| nOld:=nItem, nItem+=nWant, ; nItem := max( 1, min( nItem, eval( oBrw:bLogicLen ))), nItem - nOld } oBrw:bLDblClick:= {|| W_21AEU(oBrw,nItem,mMode,oDlg)} ...
by RiazKhan
Fri Apr 15, 2022 9:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ListBox Input Field Scrolling........
Replies: 2
Views: 250

Re: About TCalendar

... ::dDateStart, ::dDateStart:= u ) }, nil,oPanel, 200, 160,,,,, .F.,, .T.,, .F., .F.,,,,,, .F., .T., .T., .F. ) ::oDtPick:bViewChanged := {|Self,nOld,nNew| iif(nNew<MCMV_YEAR,::SetCurrentView(MCMV_YEAR),) } ::oDtPick:bChange = { | o | ::ChangeDate( o ) } oPanel:bResized := <|| local oRect ...
by Silvio.Falconi
Tue Dec 29, 2020 11:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: About TCalendar
Replies: 16
Views: 2781

Re: About TCalendar

... ::dDateStart, ::dDateStart:= u ) }, nil,oPanel, 700, 520,,,,, .F.,, .T.,, .F., .F.,,,,,, .F., .T., .T., .F. ) ::oDtPick:bViewChanged := {|Self,nOld,nNew| iif(nNew<MCMV_YEAR,::SetCurrentView(MCMV_YEAR),) } ::oDtPick:bChange = { | o | ::ChangeDate( o ) } but I have this result https://i.postimg.cc/yxLtCgfd/vvv.png ...
by Silvio.Falconi
Tue Dec 29, 2020 10:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: About TCalendar
Replies: 16
Views: 2781

Re: Carrusel con tcvrflow

... RESOURCE "RIGHT" OF oBar GROUP ACTION ( oCF:GoRight() ) oWnd:Center() oCF = TCoverFlow():New( 30, 30 ) oCF:bAction = { | o, nCover, nOld | msginfo( "Seleted: " + str( nCover, 2 ) + CRLF + "From: " + str( nold ) ) } oCF:nMaxCover = 5 oCF:lAnimated= .T. oCF:SetColor( ...
by MGA
Mon Jan 14, 2019 1:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Carrusel con tcvrflow
Replies: 4
Views: 1121

Re: FWH 16.11 Texured Fonts

... //----------------------------------- FUNCTION BUILDMETRO(oWnd, nDStyle) LOCAL oMetro, oHScroll, oBtn[30], oBrush, oVSlider LOCAL oSelf, nOld := 0, oLizenz, cText, pBrush, aPalBmp DEFINE METROPANEL oMetro OF oWnd TITLE "" ; // must be a EMPTY string otherwise START is displayed ...
by ukoenig
Thu Dec 01, 2016 8:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.11 Texured Fonts
Replies: 8
Views: 1819

Possible to show Metrobuttons disabled like Btnbmp ?

... ; TEXTFONT oTileFont ; ACTION LOGIN1() oSBtn[71]:nClrCaption := aVal[77] oSBtn[71]:bMMoved = { | nRow, nCol, nFlags | SHOW_FRAME( oSBtn, 71, nOld ), nOld := 71 } IF aVal[131] = .F. oSBtn[71]:Disable() oSBtn[71]:SetColor(12632256, 12632256) ENDIF http://www.pflegeplus.com/IMAGES/Mdisabl1.jpg ...
by ukoenig
Sat Nov 12, 2016 9:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Possible to show Metrobuttons disabled like Btnbmp ?
Replies: 1
Views: 541

Re: Size buttons in metroPanel

... := aVal[74] oSBtn[60]:oFont := oFontTiny oSBtn[60]:oTextFont := oFontTiny oSBtn[60]:bMMoved = { | nRow, nCol, nFlags | SHOW_FRAME( oSBtn, 60, nOld ), nOld := 60 } http://www.pflegeplus.com/IMAGES/MButton1.jpg oSBtn[1]:bMMoved   = { | nRow, nCol, nFlags | SHOW_FRAME( ...
by cnavarro
Mon Mar 28, 2016 9:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Size buttons in metroPanel
Replies: 11
Views: 2771

Re: Size buttons in metroPanel

... := aVal[74] oSBtn[60]:oFont := oFontTiny oSBtn[60]:oTextFont := oFontTiny oSBtn[60]:bMMoved = { | nRow, nCol, nFlags | SHOW_FRAME( oSBtn, 60, nOld ), nOld := 60 } http://www.pflegeplus.com/IMAGES/MButton1.jpg oSBtn[1]:bMMoved   = { | nRow, nCol, nFlags | SHOW_FRAME( ...
by ukoenig
Thu Mar 24, 2016 1:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Size buttons in metroPanel
Replies: 11
Views: 2771

Re: Adding Metrobutton-frames on button-action

Uwe,

Please try this to check if the codeblock is evaluated:

oMBtn[1]:bGotFocus := {|| MsgInfo( "yes" ), SHOW_FRAME(oMBtn, 1, nOld), nOld := 1 }
by Antonio Linares
Mon Oct 12, 2015 10:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adding Metrobutton-frames on button-focus / action
Replies: 6
Views: 1620

Re: Adding Metrobutton-frames on button-action

... ; ACTION MsgInfo( oMBtn[1]:Cargo , ValType( oMBtn[1]:Cargo) ) // Files(c_Path1) // oMBtn[1]:bLClicked := {|| SHOW_FRAME(oMBtn, 1, nOld), nOld := 1 } oMBtn[1]:bGotFocus := {|| SHOW_FRAME(oMBtn, 1, nOld), nOld := 1 } oMBtn[1]:oFont := oFontSmall but NO response with the other solution ...
by ukoenig
Mon Oct 12, 2015 10:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adding Metrobutton-frames on button-focus / action
Replies: 6
Views: 1620

Re: to Mr Nages xbrowse footer

... oCol TO oBrw DATA ARRAY ELEMENT 3 ; HEADER "Column 2" ; SIZE 120 ; PICTURE "99999" ; EDITABLE ; TOTAL 0 ; FOOTER { |oCol,nNew,nOld| "Test: " + CRLF + TRANSFORM( oCol:nTotal += ( IfNil( nNew, 0 ) - IfNil( nOld, 0 ) ), "99999999" ) } oBrw:nFooterLines := 2 ...
by avista
Tue May 27, 2014 12:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Mr Nages xbrowse footer
Replies: 8
Views: 1539

Re: XBROWSE Change FOOTER PCITURE

... { |n| If( n > "99999", "9999999999", "99999" } ; Produce Syntax error sugested option FOOTER { |o,nNew,nOld| TRANSFORM( oCol:nTotal += ( IfNil( nNew, 0 ) - IfNil( nOld, 0 ) ), "999999" ) Make wrong totals Test ...
by avista
Sat May 24, 2014 5:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Change FOOTER PCITURE
Replies: 13
Views: 3350

Re: xBrowse array and move to a specific row

... ) ), Eval( ::bOnSkip, Self ) }, ; ::bGoBottom := { || ::nArrayAt := Eval( ::bKeyCount ), Eval( ::bOnSkip, Self ) }, ; ::bSkip := { | nSkip, nOld | ; If( nSkip == nil, nSkip := 1, ), ; nOld := ::nArrayAt, ; ::nArrayAt += nSkip, ; ::nArrayAt := Min( Max( ::nArrayAt, 1 ), Eval( ::bKeyCount ...
by joseluisysturiz
Wed Feb 27, 2013 10:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse array and move to a specific row
Replies: 5
Views: 1321

Re: bug SQLRDD, xHarbour and BCC 5.8.2

Hi Luacs : SQLRDD ver. xHarbour Builder SQLRDD for BCC-December-2012-Build1214 FWH: After ver.1208 xHarbour: 1.23.9894 SQLRDD Not support ordkeyno() , So I do a Stupid way to save Value of field->Sr_recno to Aarray. #DUMP my SOLUTION FOR SQLRDD ordkeyno() #define ORDKEYNO() MY_KEYNO(RECNO()) Priv...
by kokookao2007
Thu Jan 10, 2013 9:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bug SQLRDD, xHarbour and BCC 5.8.2
Replies: 19
Views: 6000

Aproperties Tsay, Timage, tBtnbmp

... oBrw:SetArray ( oDlg:aControls ) oBrw:bGotop := { | | n := 1 } oBrw:bGoBottom := { | | n := EVAL ( oBrw:bLogicLen ) } oBrw:bSkip := { | nwant, nold | nold := n , n += nwant ,; n := MAX ( 1, MIN ( n, EVAL ( oBrw:bLogicLen ) ) ), n - nOld } oBrw:bLogicLen := { | | LEN ( oDlg:aControls ) } oBrw:nClrBackFocus ...
by J. Ernesto
Thu Feb 02, 2012 7:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Aproperties Tsay, Timage, tBtnbmp
Replies: 5
Views: 1186
Next

Return to advanced search