Search found 11 matches: ncell

Return to advanced search

TSBROWSE - Manuel Mercado - METHOD TSBrowse:EditExit()

... lLostFocus ) CLASS TSBrowse Local uValue, cType, oCol, lCombo, cMsg, lAuxFixKey Default lLostFocus := .F., ; ::lPostEdit := .F., ; nCol := ::nCell oCol := ::aColumns[ nCol ] lCombo := ValType( oCol:oEdit ) == "O" .and. "COMBO" $ Upper( oCol:oEdit:ClassName() ) lAuxFixKey ...
by MGA
Fri Apr 08, 2011 6:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TSBROWSE - Manuel Mercado - METHOD TSBrowse:EditExit()
Replies: 0
Views: 635

Para MMercado TSBrowse

... REDEFINE BROWSE oBrw20 ID 101 OF oFld:aDialogs[2] UPDATE CELLED; ON CHANGE (cTEST:=STR(oBrw20:nAT)+' - '+STR(oBrw20:nCELL),oTEST:REFRESH()) oBrw20:SetArray(aCALEND) ADD COLUMN TO oBrw20 DATA ARRAY ELEMENT 1 HEADER "A" ALIGN 0,1,1 SIZE 80 ADD COLUMN TO oBrw20 ...
by JoseGS
Tue Oct 27, 2009 3:35 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Para MMercado TSBrowse
Replies: 3
Views: 709

... DATA nAdjColumn AS NUMERIC // column expands to flush table window right DATA nAligBmp AS NUMERIC INIT 0 // bitmap layout in selected cell DATA nCell AS NUMERIC // actual column DATA nClrHeadBack, nClrHeadFore // headers colors DATA nClrFocuBack, nClrFocuFore // focused cell colors DATA nClrEditBack, ...
by Natter
Mon Sep 08, 2008 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bChange
Replies: 9
Views: 5460

... buenos dias como estas, ** Tu respuesta:: Si te refieres al valor de la celda activa en el browse, puedes extraerlo así: Eval(oBrw:aColumns[ oBrw:nCell ]:bData ) Si es otra cosa, por favor dame más datos. Mi duda:: tengo un browse digamos con 6 columnas y 10 registros, este browse muestra la DBF ...
by mantonio_08
Wed Jul 30, 2008 4:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: PARA MANUEL MERCADO,, TSBROWSE
Replies: 4
Views: 1089

Re: PARA MANUEL MERCADO,, TSBROWSE

... valor:: y dicho valor se muestra en ella:: Si te refieres al valor de la celda activa en el browse, puedes extraerlo así: Eval(oBrw:aColumns[ oBrw:nCell ]:bData ) Si es otra cosa, por favor dame más datos. Saludos. Manuel Mercado
by mmercado
Sat Jul 26, 2008 7:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: PARA MANUEL MERCADO,, TSBROWSE
Replies: 4
Views: 1089

Re: TSBrowse Which event to be used when user navigate row/

... TSBrowse evaluates the codeblocks oBrw:aColumns[ nCol ]:bGotFocus and oBrw:aColumns[ nCol ]:bLostFocus. These codeblocks receive the present (oBrw:nCell) and previous (oBrw:nOldCell) column numbers as parameters Regards. Manuel Mercado
by anserkk
Thu Jun 19, 2008 5:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSBrowse Which event to be used when user navigate row/col
Replies: 4
Views: 1016

Re: TSBrowse Which event to be used when user navigate row/

... TSBrowse evaluates the codeblocks oBrw:aColumns[ nCol ]:bGotFocus and oBrw:aColumns[ nCol ]:bLostFocus. These codeblocks receive the present (oBrw:nCell) and previous (oBrw:nOldCell) column numbers as parameters Regards. Manuel Mercado
by mmercado
Wed Jun 18, 2008 5:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSBrowse Which event to be used when user navigate row/col
Replies: 4
Views: 1016

TSBrowse Which event to be used when user navigate row/col

... from the current row to a new row, it doesn't fire when the the user moves to another column of the same row. I am using oBrw:nRowPos and oBrw:nCell to identify the Row number and column number. I don't knw why oBrw:nCol returning a wrong value If anybody know any solution, please let me know. ...
by anserkk
Wed Jun 18, 2008 10:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSBrowse Which event to be used when user navigate row/col
Replies: 4
Views: 1016

... ***************** function MYINSERT() ***************** MyAppend('saipro') olbx:gobottom() olbx:BUGUP() ***Aqui Sr. Manuel do while .t. if olbx:ncell#1 olbx:goleft() else exit endif enddo *** olbx:refresh() olbx:setfocus() return(.t.) Obrigado
by MGA
Mon Mar 17, 2008 11:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Para Manuel Mercado - TSBROWSE
Replies: 3
Views: 1030

Re: Manuel Mercado - Obter a coluna atual TSBROWSE

Hola José:
SGS wrote: ? obrw:ncolposr() //me retorna 2 mais estou na 17

oBrw:nColPos te devuelve la posición relativa dentro de las columnas visibles, para lo que tú necesitas usa:
?oBrw:nCell

Saludos

Manuel Mercado
by mmercado
Sat Mar 15, 2008 4:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Manuel Mercado - Obter a coluna atual TSBROWSE
Replies: 3
Views: 853

Re: I found Eval( oBrw:aColumns[ oBrw:nAtCol(nCol) ]:bData

... Dutch Hi Dutch glad you found this out. If you take the following suggestion you don't need to pass a column number. eval( oBrw:aColumns[ oBrw:nCell ]:bData ) Best regards, Detlef
by Detlef Hoefner
Mon Jul 24, 2006 12:25 pm
 
Forum: FiveWin for CA-Clipper
Topic: How can I get data from each column of TSbrowse?
Replies: 13
Views: 4670

Return to advanced search