Search found 1117 matches: ncol

Return to advanced search

Re: Array of gets

local oGets[ len( aFlds ) ] ... for nGt := 1 to len( aFlds ) cFld := aFlds[ nGt ] @ nRw, nCol GET oGets[ nGt ] VAR aGets[ nGt ] PICTURE aPct[ nGt ] PIXEL SIZE nSz, nFh VALID n_pas( cAlias, cFld ) next It seems that this isn't working .. :-(( I remmember something about ...
by Rimantas
Wed Oct 26, 2005 10:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Array of gets
Replies: 11
Views: 4780

Array of gets

... to assign gets in for .. next . Here is a small sample : local oGets[ len( aFlds ) ] ... for nGt := 1 to len( aFlds ) cFld := aFlds[ nGt ] @ nRw, nCol GET oGets[ nGt ] VAR aGets[ nGt ] PICTURE aPct[ nGt ] PIXEL SIZE nSz, nFh VALID n_pas( cAlias, cFld ) next It seems that this isn't working .. ...
by Rimantas
Wed Oct 26, 2005 7:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Array of gets
Replies: 11
Views: 4780

Resuelto!!

... BmpTiled( hDC, _oWnd, oBmp ) STATIC FUNCTION BmpTiled( hDC, oWnd, oBmp ) local nWidth := oWnd:nWidth(), nHeight := oWnd:nHeight() local nRow := 0, nCol := 0, n local nBmpWidth := oBmp:nWidth(), nBmpHeight := oBmp:nHeight() if oBmp:hBitmap == 0 return nil endif while nRow < nHeight nCol = 0 while ...
by Patricio Avalos Aguirre
Wed Oct 19, 2005 7:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: imagen al inicio del sistema
Replies: 3
Views: 1894

... ; HEADERS "Pot","Rolls","Current Vol" SIZE 200,250 OF oWnd ; FIELDSIZES 30,40,40 UPDATE oLbx:blClicked := ; {|nRow,nCol,nKeyFlags| if(oLbx:nAtCol(nCol)=2,ShowRolls(),nil)} oLbx:lCellStyle := .T. oLBx:bSkip := {|nRecs| STOCKLOC->(DbSkipper(nRecs))} oLbx:bLine := ...
by GWard
Tue Oct 18, 2005 8:46 am
 
Forum: FiveWin for Pocket PC
Topic: FONT And SetFont()
Replies: 8
Views: 3278

Re: Combobox , changing aitems dynimacaly

... := { "1:One", "2:CHANGED", "3:Three" } , .T. ) BUT , THIS IS NOT EXECUTED , MSGINFO HAS NO EFFECT !!!!!!!!! Frank Try this codeblock : @ nRow, nCol COMBOBOX oCbx VAR cPav PIXEL UPDATE VALID !empty( cPav ) OF oDlg SIZE n, nFh * 4 aeval( MyArray, { |x| aadd( oCbx:aItems, x[ 2 ] ) } ) // for multidimensional ...
by Rimantas
Tue Oct 18, 2005 7:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Combobox , changing aitems dynimacaly
Replies: 1
Views: 1367

Many thanks,

I used oLbx:bLClicked := {|nRow,nCol,nKeyFlags| MyFunction(oLbx,nCol)}

Then

FUNCTION MyFunction(oLbx,nCol)
LOCAL iActualCol := oLbx:nAtCol(nCol)

do case
case iActualCol=1
endc
... Etc
by GWard
Wed Oct 12, 2005 8:22 am
 
Forum: FiveWin for Pocket PC
Topic: Retrieving Column clicked in LISTBOX browse
Replies: 2
Views: 1158

Colouring TwBrowse ( Hernan's )

... color and underline with other color active cell . Is it possible ? Here is my own background painting for bBkColor color : METHOD GrPair( nRow, nCol, nStyle, oSel, nFtr ) CLASS TWBrowse // Rimantas U. local nClr := ::nClrPane default nFtr := NIL if nStyle == 1 .or. nStyle == 2 // headers and ...
by Rimantas
Tue Oct 11, 2005 5:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Colouring TwBrowse ( Hernan's )
Replies: 12
Views: 6694
Previous

Return to advanced search