Search found 62 matches: bedit

Return to advanced search

Re: FWH: MySql/MariaDB: RowSet object

... oBrw:DrawLine() and the new record is shown in the xbrowse in the place it is supposed to be (acording to key order) You advice us to use oDbCli:bEdit, and oBrw:EditSource( .t. ), but I prefer a more (complex) controlled way because I have permissions on appending, modifying, which are different ...
by Adolfo
Mon Apr 24, 2017 2:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: MySql/MariaDB: RowSet object
Replies: 51
Views: 19853

New FTDN October/Octubre 2016 (FWH 16.10)

... automatically. Only skip() expands the rowset but not GoTo() or KeyGoTo() or GoBottom() - Method EditBaseRecord( [cFields = *], [lNew=.f.], ; [bEdit=nil], [oBrw=nil] ) Added new 4th optional param oBrw. After edit, if a sorted column is modified, the record is repositioned in the correct position. ...
by Antonio Linares
Tue Nov 01, 2016 10:35 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2016 (FWH 16.10)
Replies: 0
Views: 1286

Re: New FTDN August/Agosto 2016 (FWH 16.08)

... is no extra code required for this except setting the flag to .T. before creation of xbrowse. 3) New METHOD EditBaseRecord( [cFieldList], [lNew], [bEdit] ) It is possible that only some fields are read into the RowSet and for editing alone, we may need to edit all the fields (or more fields than ...
by Antonio Linares
Wed Oct 12, 2016 9:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2016 (FWH 16.08)
Replies: 1
Views: 1989

New FTDN August/Agosto 2016 (FWH 16.08)

... cList, aData ) * Fix: TDataRow class (datarow.prg) Method FieldName( nLastFieldNumber ) returns an empty string. Fixed. * TDataRow: When bEdit is evaluated, the workarea of the record is selected for the duration of the edit. * Enhancement: function PopupBrowse() now supports an optional ...
by Antonio Linares
Mon Sep 26, 2016 9:03 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2016 (FWH 16.08)
Replies: 1
Views: 1989

Re: Problema con listbox

Josep,
Qué version antigua usabas?

Error description: Error BASE/1005 Message not found: TWBROWSE:_BEDIT

Indica que no existe en la class, el method o block a evaluar bEdit

Por qué no consideras pasarte a TXBROWSE?. Es mucho mas poderoso.
by FranciscoA
Thu Oct 29, 2015 2:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con listbox (Solucionado)
Replies: 16
Views: 2982

Re: Problema con listbox

... := {| nRow, nCol, nAt| nAt := oLbx:nAt, CanviaMes( aDatosBox, nAt, nCol, oLbx ), oLbx:Refresh() }   oLbx:bEdit :={|ncol|EditCel3( oLbx,nCol,@aDatosBox,oFld,@ntotal ) }                     ...
by sajarm
Wed Oct 28, 2015 10:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con listbox (Solucionado)
Replies: 16
Views: 2982

Re: EDICION TXBROWSE 10 LINEAS...

... { { 1,0,0,1,0 }, { 0,1,1,0,1 }, etc ...... }, ya que entiendo que el número de filas y columnas es fijo A la hora de realizar la edición todos los bEdit tendrían que referirse a una única funcion en la que segun la fila y columna analices si esa celda es editable o no en funcion del valor que tenga ...
by cnavarro
Tue Aug 05, 2014 9:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Re: EDICION TXBROWSE 10 LINEAS...(Cerrado Sin solucion)
Replies: 15
Views: 4781

Re: New FTDN July/Julio 2013 (FWH 13.07)

... de la ventana principal están en la columna de un xbrowse con estilo 2010, los menús también se mostrarán con estilo 2010. * Nueva: Nueva DATA bEdit { |oRec| MyEdit( oRec )}. Esta DATA será usada si el objeto TDataRow es creado desde un xbrowse. * Nueva: Nueva DATA uDataSource de sólo lectura. ...
by Antonio Linares
Tue Jul 30, 2013 3:43 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio 2013 (FWH 13.07)
Replies: 1
Views: 2454

New FTDN July/Julio 2013 (FWH 13.07)

... prints page numbers at bottom center. * Fix: oCol:bOnChange was not getting triggered when the change is only in the case. Now fixed. * New: DATA bEdit. { |oRec| MyEdit( oRec )}. This data is used by TDataRow if created from the xbrowse. * New: ReadOnly DATA uDataSource: Returns the datasource ...
by Antonio Linares
Tue Jul 30, 2013 11:06 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio 2013 (FWH 13.07)
Replies: 1
Views: 2454

Re: class TDatabase and ADO

... of the TDataRow. Obviously we use custom edit dialog to edit/add the records. We can do this in to ways. oRec := TDataRow():New( Source ) oRec:bEdit := { |oRec| MyEditDlg( oRec ) } oRec:Edit() Or oRec := TDataRow():New( Source ) MyEditDlg( oRec ) Whichever way we edit, please use only built ...
by nageswaragunupudi
Wed Jul 17, 2013 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: class TDatabase and ADO
Replies: 17
Views: 5121

Re: TDataRow and ADO questions

... New() lReadOnly : Logical default .t. RecNo : Record No. ( 0 in case of Blank/New ) bSave : Optional codeblock to override default Save() method bEdit : Optional codeblock to override default Edit() method bOnSave : Optional cpdeblock. Executes at the end of Save() method lValidData : ReadOnly ...
by nageswaragunupudi
Thu Jun 06, 2013 11:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDataRow and ADO questions
Replies: 48
Views: 11612

New FTDN May/Mayo 2013 (FWH 13.05)

... oRec:Modified() oRec:Save() etc. The class has a default Edit() method for quick use. Programmer can build his own add/edit dialog or Assign oRec:bEdit with his own implementation. More details of usage will be posted in the forums * New: Class TRibbonBar new Method AEvalWhen() controls all controls ...
by Antonio Linares
Wed Jun 05, 2013 3:09 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2013 (FWH 13.05)
Replies: 0
Views: 2835

Re: xbrowse. bdata y array

goosfancito wrote:bedit no es para cuando se quiere editar la celda?

No
bEditValue is the codeblock for the value to be shown.

Note: Use of bStrData is deprecated years ago. Instead we should use bEditValue.
bEditValue can also be a SetGet block.
by nageswaragunupudi
Fri May 04, 2012 4:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse. bdata y array
Replies: 4
Views: 857

Re: xbrowse. bdata y array

bedit no es para cuando se quiere editar la celda?
by goosfancito
Fri May 04, 2012 12:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse. bdata y array
Replies: 4
Views: 857

Re: Ajustes en XBrowse. ( Resuelto )

Hola Raymundo: Yo tambien estoy cambiando TWBrowse por XBrowse Todavia no me queda claro como debo desarrollar para XBrowse, lo equivalente a bEdit de TWBrowse. Tu me podrias ayudar en esto por favor De antemanos, gracias Te adjunto un ejemplo de como lo hago, espero te sirva. oBrw:aCols[ ...
by rolando
Tue May 11, 2010 3:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustes en XBrowse.
Replies: 16
Views: 4237
PreviousNext

Return to advanced search