Search found 141 matches: keyno

Return to advanced search

Re: tdolphin y xbrowse

... := (.T.) // Quitamos el scroll horizontal oBrw:bClrHeader := {|| { nRGB(000,000,000), nRGB(128,255,128) } } oBrw:bClrStd := {|| If( oBrw:KeyNo() % 2 == 0, { CLR_BLACK, RGB( 224, 236, 255 ) }, { CLR_BLACK, RGB( 189, 211, 253 ) } ) } oBrw:bClrFooter := {|| { nRGB(000,000,000), nRGB(150,200,200) ...
by kpidata
Thu Sep 14, 2017 11:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: tdolphin y xbrowse
Replies: 3
Views: 1629

tdolphin y xbrowse

... := (.T.) // Quitamos el scroll horizontal oBrw:bClrHeader := {|| { nRGB(000,000,000), nRGB(128,255,128) } } oBrw:bClrStd := { || If( oBrw:KeyNo() % 2 == 0, { CLR_BLACK, RGB( 224, 236, 255 ) }, { CLR_BLACK, RGB( 189, 211, 253 ) } ) } oBrw:bClrFooter := {|| { nRGB(000,000,000), nRGB(150,200,200) ...
by kpidata
Thu Sep 14, 2017 9:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: tdolphin y xbrowse
Replies: 3
Views: 1629

Re: Error from ADO

... (there circling their wagons). I do believe the new way is reduced the number of errors, but is there a way to eliminate them completely? A unique Keyno field is a part of the select statement, it seems the row should be found quite easily: "where keyno='" + cKeyno + "'" I assume ...
by byron.hopp
Thu Aug 10, 2017 3:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error from ADO
Replies: 14
Views: 3611

Re: Tabla MySql en Array y xBrowse

... .T. ) oBrw:lHeader :=.T. oBrw:l2007 :=.F. oBrw:lFooter :=.F. oBrw:lHScroll :=.T. //Aqui el Efecto Pijama oBrw:bClrStd := { || If( oBrw:KeyNo() % 2 == 0, ; { CLR_BLACK, RGB( 224, 236, 255 ) }, ; { CLR_BLACK, RGB( 189, 211, 253 ) } ) } // Ponemos los nombre a las columnas AEval( oBrw:aCols, ...
by Compuin
Wed Jun 07, 2017 4:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tabla MySql en Array y xBrowse (RESUELTO)
Replies: 15
Views: 2342

Re: CONTADOR Y ORDENAR REGISTROS

... contador de registro, en la columna dos del primer browse, para usarlo en la taskpanel deberias pasar los parametros oBrw:KeyNo() y oBrw:KeyCount() oBrw:aCols[2]:bFooter := { || "Cliente N° "+LTRIM( STR( oBrw:KeyNo() ) ) + ...
by armando.lagunas
Tue May 23, 2017 11:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONTADOR Y ORDENAR REGISTROS
Replies: 2
Views: 718

error en xbrowse o FWH ???

... := (.T.) // Quitamos el scroll horizontal oBrw:bClrHeader := {|| { nRGB(000,000,000), nRGB(128,255,128) } } oBrw:bClrStd := { || If( oBrw:KeyNo() % 2 == 0, { CLR_BLACK, RGB( 224, 236, 255 ) }, { CLR_BLACK, RGB( 189, 211, 253 ) } ) } oBrw:bClrFooter := {|| { nRGB(000,000,000), nRGB(150,200,200) ...
by kpidata
Wed May 10, 2017 2:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: error en xbrowse o FWH ???
Replies: 1
Views: 1032

error al trabajar con Xbrowse

... := (.T.) // Quitamos el scroll horizontal oBrw:bClrHeader := {|| { nRGB(000,000,000), nRGB(128,255,128) } } oBrw:bClrStd := { || If( oBrw:KeyNo() % 2 == 0, { CLR_BLACK, RGB( 224, 236, 255 ) }, { CLR_BLACK, RGB( 189, 211, 253 ) } ) } oBrw:bClrFooter := {|| { nRGB(000,000,000), nRGB(150,200,200) ...
by kpidata
Mon May 08, 2017 3:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: error al trabajar con Xbrowse
Replies: 3
Views: 931

Re: Consulta xBrowser

... implemento en esa linea de codigo ??, dentro de esa misma sentencia ?? en XBROWSER no funciona "With Object" como en xBrowse(), el oBrw:KeyNo() donde lo coloco ?? y el DBLCLICK como defino que cierre el XBROWSER y me deje el numero de fila ... Disculpa tanta consulta, pero no tengo idea ...
by joseluisysturiz
Mon Apr 17, 2017 7:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta xBrowser
Replies: 5
Views: 821

Re: Consulta xBrowser

... implemento en esa linea de codigo ??, dentro de esa misma sentencia ?? en XBROWSER no funciona "With Object" como en xBrowse(), el oBrw:KeyNo() donde lo coloco ?? y el DBLCLICK como defino que cierre el XBROWSER y me deje el numero de fila ... Disculpa tanta consulta, pero no tengo idea ...
by Enrrique Vertiz
Mon Apr 17, 2017 4:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta xBrowser
Replies: 5
Views: 821

Re: Consulta xBrowser

Saludos, si quieres el numero de registro nReg := oBrw:nArrayAt / oBrw:KeyNo() si qieres el valor de una celda determinada: Valor_Celda := oBrw]:aArrayData[ oBrw:nArrayAt, nCol ] nCol es el numero de la columna de la cual quieres obtener el valor de la celda, ...
by joseluisysturiz
Mon Apr 17, 2017 4:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta xBrowser
Replies: 5
Views: 821

Re: How to define a GROUP-color on xBrw-cells ?

... ) WITH OBJECT oBrw1 :aCols[ 1 ]:bClrStd := { || aColorPairs[ VAL( STEUER->PAT_NUMMER ) % nColorPairs + 1 ] } :bRecSelData := { |brw| brw:KeyNo } :bRecSelHeader := { |brw| "Nr." } // or simply "SlNo" :bRecSelFooter := { |brw| brw:nLen } // or Simpy any value :nRecSelWidth ...
by ukoenig
Mon Mar 20, 2017 12:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to define a GROUP-color on xBrw-cells ?
Replies: 4
Views: 759

Re: Rowset data and method is not working.

... Correct spelling is ABSOLUTEPOISTION and not ABSOUTEPOSITION. This access method is provided for compatibility with ADO. The result is the same as KeyNo() LastRec(): This is the last record when the RowSet is read. This remains constant during the life of the rowset, even after deletion of some ...
by nageswaragunupudi
Mon Feb 06, 2017 12:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rowset data and method is not working.
Replies: 2
Views: 825

Rowset data and method is not working.

... - Description : Error BASE/1004 Message not found: FWMARIAROWSET:ABSOUTEPOSITION What is difference between them? - ::RecNo(), ::KeyNo(), ::OrdKeyNo() is the same - ::RecCount(), ::KeyCount(), ::LastRec() is the same. Thanks in advance.
by dutch
Sun Feb 05, 2017 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rowset data and method is not working.
Replies: 2
Views: 825

Re: lSeekBar

... "KENNER", "SIGNAL", "MERKER" } ; ALIAS "KKASSE" ... ... WITH OBJECT oBrw1 :bRecSelData := { |brw| brw:KeyNo } :bRecSelHeader := { |brw| "Nr." } // or simply "SlNo" :bRecSelFooter := { |brw| brw:nLen } // or Simpy any value :nRecSelWidth ...
by ukoenig
Sat Dec 31, 2016 10:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: lSeekBar
Replies: 16
Views: 7206

Re: Aplication with FWHMysqlMariaDb

Wherever we display, the message is : "Row " + cValToChar( oBrw:KeyNo ) + "/" + cValToChar( oBrw:nLen ) Display in footer: If we display as footer, it looks nice if it is the footer of the first column. This is possible if the first column ...
by nageswaragunupudi
Thu Dec 15, 2016 1:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Aplication with FWHMysqlMariaDb
Replies: 1
Views: 552
PreviousNext

Return to advanced search