Search found 23 matches: lautoedit

Return to advanced search

TSBrowse9 and FWH.12.11 vs FWH.13.4

Hi All I recently re-built an application which uses TSbrowse with oBrw:lAutoEdit := .t. and oBrw:SetAppendMode(.t.) I didn't make any changes to the application programs, however when compiled with FWH 13.4, the edit & append options do not work. When I ...
by David Williams
Fri May 31, 2013 2:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSBrowse9 and FWH.12.11 vs FWH.13.4
Replies: 1
Views: 521

Re: Vertical scroll wbrowse on folders

... := CHEADFRONT oLbx:aJustify := eval(bAdjust) oLbx:nLineStyle := 1 oLbx:nLineHeight := 22 oLbx:nFreeze := 11 oLbx:lCellStyle = TRUE oLbx:lAutoEdit = TRUE Regards Colin
by Colin Haig
Thu Jul 30, 2009 12:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Vertical scroll wbrowse on folders
Replies: 11
Views: 2430

... bro_campo, bro_subtit) Brw1:bDropOver = { | uDropInfo, nRow, nCol, nKeyFlags | ; Brw1:Add( uDropInfo ), MsgBeep() } Brw1:lCellStyle = .T. Brw1:lAutoEdit = .T. Brw1:lAutoSkip = .T. Brw1:ladjlastcol:=.F. Brw1:lDrawFocusRect:=.F. Brw1:nLineStyle:= 2 Brw1:Set3DStyle() Brw1:nHeaderHeight := 18 Brw1:nLineHeight ...
by angstin
Thu Oct 30, 2008 2:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ANTONIO AYUDA CON SETFOCUS A UN MDI
Replies: 9
Views: 1513

TSBrowse Ver 8.0 - Edit:Show()

... POSTEDIT {|uVal| if(uVal != nil, CheckBox44(oBrw1,oBrw2,padr(uVal,255),2),) } ; EDITABLE MOVE DT_MOVE_NEXT // Activate continuous edit mode oBrw1:lAutoEdit := pTRUE oBrw1:lNoGrayBar := pTRUE oBrw1:lNoHScroll := pTRUE oBrw1:lFixCaret := pFALSE // True for blocky cursor //oBrw1:l2007 := pTRUE oBrw1:nAdjColumn ...
by David Williams
Sun Oct 05, 2008 10:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSBrowse Ver 8.0 - Edit:Show()
Replies: 4
Views: 1140

... browsing flags DATA lAppendMode AS LOGICAL INIT .F. READONLY // automatic append flag DATA lAutoCtx AS LOGICAL // compatibility with TCBrowse DATA lAutoEdit AS LOGICAL INIT .F. // activates continuous edition mode DATA lAutoSkip AS LOGICAL INIT .F. // compatibility with TCBrowse DATA lIconView ...
by Natter
Mon Sep 08, 2008 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bChange
Replies: 9
Views: 5460

Rolando,

Es suficiente con que hagas oXBrowse:lAutoEdit := .T.
by Antonio Linares
Thu Jul 31, 2008 10:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con xBrowse
Replies: 1
Views: 524

Marco,

You may modify that line this way:

if ( ( nCol := ::nAtCol( nColPix ) ) != 0 .and. ::aColumns[ nCol ]:lEdit .and. ::lAutoEdit
by Antonio Linares
Wed May 14, 2008 10:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tcbrowse and a random "Bound error: array access"
Replies: 3
Views: 1489

... array that is crashing. If you look at the lDblClick() method you will see this line: if ::aColumns[ nCol := ::nAtCol( nColPix ) ]:lEdit .and. ::lAutoEdit Your error message seems to be indicating that nCol is zero. So when the program gets to this line: Eval( ::aColumns[ nCol ]:bData, uTemp ...
by James Bott
Tue May 13, 2008 6:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tcbrowse and a random "Bound error: array access"
Replies: 3
Views: 1489

Re:

... oTbr:aColSizes:= anTam oTbr:nClrPane = { | nCol | if( acDatos[ oTbr:nAt, nCol ] = "X", CLR_HRED, CLR_WHITE ) } oTbr:lCellStyle = .t. oTbr:lAutoEdit = .f. oTbr:lAutoSkip = .t. * da error de acceso al array por motivo de la línea: oTbr:nClrPane = { | nCol | if( acDatos[ oTbr:nAt, nCol ] ...
by softruz
Tue Apr 29, 2008 3:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Colorear celdas en TWBrowse
Replies: 16
Views: 3044

... can be defined as text or as code block. See sample 7 32.- Same code applyes for dialogs and windows, with no tricks. 33.- Continuows edition with lAutoEdit instance variable. See sample 6 34.- New Multiselect feature with SetSelectMode() Method. See samples 1 and 3 35.- New BtnGet editing with ...
by George
Fri Feb 08, 2008 3:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSBROWSE Class OF MANUEL MERCADO
Replies: 24
Views: 8782

... // fjhg 28-may-07 DATA nMaxFilter // Maximum number of records to count // on indexed filters DATA lHitTop, lHitBottom, lCaptured, lMChange DATA lAutoEdit, lAutoSkip DATA lCellStyle AS LOGICAL INIT .f. DATA aHeaders, aColSizes DATA nClrBackHead, nClrForeHead DATA nClrBackFocus, nClrForeFocus ...
by FWHISHOW
Wed Dec 12, 2007 4:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TWBROWSE - bkeydown não aceita VK_UP?
Replies: 9
Views: 4177

... cPic ), ; Transform( aDatos[nAt,5], cPic ) } ) } oLbx:aJustify:= { 2, 2, .f., .t., .t. , .t. } oLbx:SetArray( aDatos ) oLbx:lAdjLastCol:= .f. oLbx:lAutoEdit := .t. oLbx:lAutoSkip := .t. oLbx:nLineStyle := 2 oLbx:nHeaderStyle:= 2 oLbx:bBkColor:= {|nRow,nCol,nStyle| ; if( nStyle==1,if( nCol%2==0, ...
by AOKISANTOS
Mon Sep 24, 2007 4:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TWBrowse Editable
Replies: 3
Views: 2020

TWBrowse Editable

... := 3 oLbxCompra:aJustify := {.T.,.F.,.F.,.T.,.T.,.T.} oLbxCompra:lAutoEdit = .T. oLbxCompra:Refresh() RETURN Nil FUNCION PARA ADICIONAR O EXCLUIR UNA LINEA FUNCTION fAdicionarLinha() AADD(aItens,{ ...
by marizete
Mon Sep 24, 2007 12:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TWBrowse Editable
Replies: 3
Views: 2020

Hola, aumente una data DATA nkey luego en el metodo METHOD KeyChar( nKey, nFlags ) CLASS TWBrowse : CASE ::LAutoedit ::edit( :::nColAct,, nKey ) otherwise : Luego el metodo queda asi METHOD Edit( nCol, lModal, nkey ) CLASS TWBrowse : ::nKey := nKey : y por ultimo en el metodo ...
by Marcelo Via Giglio
Mon Jul 09, 2007 9:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: EDICION POR COLUMNA
Replies: 6
Views: 1391

Ahora si funciono con el STR(), pero ahora no se puede modificar ese campo los demas si a pesar de que lautoedit=.t. :cry:



Jaime
by jacgsoft
Fri Apr 13, 2007 6:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: LISTBOX no me muestra campos Numericos
Replies: 3
Views: 841
Next

Return to advanced search