Search found 51 matches: nskip

Return to advanced search

Re: Area de trabajo no usada: ORDKEYNO

... = { || oRS1Cli:RecordCount } oBrow:bGoTop = { || oRS1Cli:MoveFirst() } oBrow:bGoBottom = { || oRS1Cli:MoveLast() } oBrow:bSkip = { | nSkip | Skipper( oRs1Cli, nSkip ) } oBrow:lcellstyle := .f. oBrow:nlinestyle := 2 oBrow:nclrpane := { || iif( ( oRS1Cli:AbsolutePosition / 2 ) - INT( ...
by jpcavagnaro
Sun Sep 11, 2022 12:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Area de trabajo no usada: ORDKEYNO
Replies: 3
Views: 320

Re: Advantage Database Server

... a "extra" Column in Result-Set which is like OrdKeyNo() this is useful when want to "SKIP" (in Order) in SQL Table if "nSkip" is > FIELD row_number() it need call o:NextCursor() i "think" i can "translate" my Xbase++ CLASS Code into harbour ...
by Jimmy
Fri Jan 21, 2022 7:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advantage Database Server
Replies: 32
Views: 3650

Re: funciones de FWH y Harbour en un archivo .txt

... AfterAtNum(<cSearch>,<cString>,[<nCount>],[<nSkipChars>])->cResult AIns(<aTarget>,<nPosition>,[<xValue>],[<lGrow>])->aTarget ALenAlloc(aArray>)->nElements ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5709

PROBLEMAS CON EL TWBROWSE

... los registros capturados, luego a veces marca error en el TWBROWSE:PAINT Alguien sabe porque ? METHOD Paint() CLASS TWBrowse local n := 1, nSkipped := 1, nLines local nSkip, nRealSkip local aInfo _WBRWSET_ if ::lIconView ::DrawIcons() return 0 endif CursorWait() aInfo:= ::DispBegin() if ...
by ROBER68
Fri Jun 21, 2013 5:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: PROBLEMAS CON EL TWBROWSE
Replies: 1
Views: 925

Re: xBrowse array and move to a specific row

Rick, revisa el METHOD SetArray( aData, lAutoOrder, nColOrder, aCols, bOnSkip ) CLASS TXBrowse, saludos... :shock: DEFAULT ::bGoTop := { || ::nArrayAt := Min( 1, Eval( ::bKeyCount ) ), Eval( ::bOnSkip, Self ) }, ; ::bGoBottom := { || ::nArrayAt := 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: 1320

Refresh SQL Select in Listbox

... PIXEL oLbx:bLogicLen = { || oSql:RecordCount } oLbx:bGoTop = { || oSql:MoveFirst() } oLbx:bGoBottom = { || oSql:MoveLast() } oLbx:bSkip = { | nSkip | Skipper( oSql, nSkip ) } oLbx:cAlias = "ARRAY1" // Refresh routine... //----------------------------------------------------------------------------// ...
by cdmmaui
Wed Aug 22, 2012 2:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Refresh SQL Select in Listbox
Replies: 5
Views: 1314

Requirements for Connecting to MS SQL

... ; OF oDlg oLbx:bLogicLen = { || oSql:RecordCount } oLbx:bGoTop = { || oSql:MoveFirst() } oLbx:bGoBottom = { || oSql:MoveLast() } oLbx:bSkip = { | nSkip | Skipper( oSql, nSkip ) } oLbx:cAlias = "ARRAY1" ACTIVATE DIALOG oDlg ON INIT ( oDlg:SetControl( oLbx ), Sysrefresh() ) // Disconnecting ...
by cdmmaui
Wed Jul 11, 2012 6:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Requirements for Connecting to MS SQL
Replies: 6
Views: 1438

Listbox via MS SQL

... User" oLbx:bLogicLen = { || oSql:RecordCount } oLbx:bGoTop = { || oSql:MoveFirst() } oLbx:bGoBottom = { || oSql:MoveLast() } oLbx:bSkip = { | nSkip | Skipper( oSql, nSkip ) } oLbx:cAlias = "ARRAY1" ACTIVATE DIALOG oDlg ON INIT ( oDlg:SetControl( oLbx ), Sysrefresh() ) // Disconnecting ...
by cdmmaui
Wed Jul 04, 2012 5:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox via MS SQL
Replies: 6
Views: 1753

New FTDN October/Octubre 2011 (FWH 11.10)

... * Enhancement: Class TExlorerList. + New DATA bChange: codeblock to evaluate when item selected is changed by keyboard + New METHOD GoDown( nSkip ), skip to Down <nSkip> items, bChanged will be evaluated + New METHOD GoUp( nSkip ), skip to Up <nSkip> items, bChanged will be evaluated ...
by Antonio Linares
Wed Nov 02, 2011 1:24 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2011 (FWH 11.10)
Replies: 3
Views: 4219

XBrowse + ADO

... ) UPDATE oLbx:bLogicLen := { || oRs:RecordCount } oLbx:bGoTop := { || oRs:MoveFirst() } oLbx:bGoBottom := { || oRs:MoveLast() } oLbx:bSkip := { | nSkip | Skipper( oRs, nSkip ) } oLbx:cAlias := "ARRAY" oDlgs:lHelpIcon := .f. ACTIVATE DIALOG oDlgs ............................................. ...
by ADutheil
Wed Feb 16, 2011 4:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse + ADO
Replies: 7
Views: 1709

buscar la primera letra en un listobx

... ) OF Dialogo size 15,110 pixel oLbX:bGoTop = { || nCur := 1 } oLBX:bGoBottom = { || nCur := Len( EMPRE ) } oLbX:bSkip = { | nSkip | Skipper( EMPRE, @nCur, nSkip ) } // con array oLbX:bLogicLen := { || LEN(EMPRE) } oLbX:cAlias := "Array" oLbX:bKeydown := { | nKey ...
by QAZWSX2K
Fri Jan 21, 2011 8:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: buscar la primera letra en un listobx
Replies: 4
Views: 847

Re: xBrowse Drag & Drop Question

Pete: Also, I saved the row in the browse cargo: oBrw:bSkip := { | nSkip, nOld | ; iif(nSkip == nil, nSkip := 1, ),; nOld := oBrw:nArrayAt,; oBrw:nArrayAt += nSkip,; oBrw:nArrayAt := Min( Max( oBrw:nArrayAt, 1 ), len( oBrw:aArrayData ) ),; oBrw:cargo := oBrw:nArrayAt, ...
by Randal
Thu Nov 25, 2010 5:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Drag & Drop Question
Replies: 4
Views: 1209

Re: twbrowse+mysql utilizando recordset é possivel

... oLbx:bLogicLen = { || oRs:RecordCount } oLbx:bGoTop = { || oRs:MoveFirst() } oLbx:bGoBottom = { || oRs:MoveLast() } oLbx:bSkip = { | nSkip | Skipper( oRs, nSkip ) } oLbx:cAlias = "ARRAY" REDEFINE BUTTON ID 102 OF oDlg ACTION( EditC1(.t.,oLbx ), oLbx:Refresh() ) REDEFINE ...
by Ramon Paredes
Mon Jul 26, 2010 11:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: twbrowse+mysql utilizando recordset é possivel
Replies: 12
Views: 5008

... SIZE 220, 167 oBrw:bLogicLen = { || Len( aArray ) } oBrw:bGoTop = { || nCur := 1 } oBrw:bGoBottom = { || nCur := Len( aArray ) } oBrw:bSkip = { | nSkip | Skipper( aArray, @nCur, nSkip ) } oBrw:cAlias = "ARRAY" @ 12, 2 BUTTON "Dlg" SIZE 80, 30 ACTION MsgInfo( aArray[ nCur, 1 ] ) @ 12,17 BUTTON ...
by yardenmo
Mon Sep 22, 2008 8:32 am
 
Forum: FiveWin for Pocket PC
Topic: Using ListBox
Replies: 14
Views: 2601

... nRec - 1 ) ) oBrw:bLogicLen = { || oRs:RecordCount } oBrw:bGoTop = { || oRs:MoveFirst() } oBrw:bGoBottom = { || oRs:MoveLast() } oBrw:bSkip = { | nSkip | Skipper( oRs, nSkip ) } oBrw:cAlias = "ARRAY" ACTIVATE DIALOG oDlg ON INIT oDlg:SetControl( oBrw ) CENTER RETURN NIL STATIC FUNCTION TCBROWSERECORDSET( ...
by jcaro
Tue Aug 05, 2008 2:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda com listbox usando ADORDD e comando SQL( Resolvido)
Replies: 7
Views: 2255
Next

Return to advanced search

cron