Search found 62 matches: bedit

Return to advanced search

Re: Lookup method of Tdatabase

... edit code eating up memory for each copy. Please read the class definition again. database object and they would have to have different names oDbf:bEdit := { |oRec| MyNewEdit( oRec ) } oDbf:Edit()
by nageswaragunupudi
Sat Aug 21, 2021 8:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lookup method of Tdatabase
Replies: 44
Views: 2868

Re: New FTDN December 2019 (FWH 19.12)

... para bloquear registros mientras editamos. viewtopic.php?f=3&t=37928 * FWMariaRowSet METHOD EditBaseRecord( cFieldList, lNew, bEdit, oBrw, lLock ) Si lLock está configurado en .T. o se especifica un bloque de código, el registro se bloquea durante la lectura y, si no se lee, ...
by Antonio Linares
Thu Jan 02, 2020 12:45 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December 2019 (FWH 19.12)
Replies: 2
Views: 3030

New FTDN December 2019 (FWH 19.12)

... records while editing. http://forums.fivetechsupport.com/viewtopic.php?f=3&t=37928 * FWMariaRowSet METHOD EditBaseRecord( cFieldList, lNew, bEdit, oBrw, lLock ) If lLock is set to .t. or a codeblock is specified, the record is locked while reading and on failure to read, the codeblock is ...
by Antonio Linares
Sat Dec 21, 2019 5:59 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December 2019 (FWH 19.12)
Replies: 2
Views: 3030

Re: clarification respect a recordset

... Enhancement to method EditBaseRecord(...) Added optional new 5th param, lLock (default .f.) Revised syntax: EditBaseRecord( [cFieldList], [lNew], [bEdit], [oBrw], [lLock] ) If lLock is set to true, the row is locked for edit and lock is released after edit. Hi Mr. Rao, I use FWH 19.03. I have updated ...
by Horizon
Wed Sep 25, 2019 12:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: clarification respect a recordset
Replies: 14
Views: 3304

Re: clarification respect a recordset

... Enhancement to method EditBaseRecord(...) Added optional new 5th param, lLock (default .f.) Revised syntax: EditBaseRecord( [cFieldList], [lNew], [bEdit], [oBrw], [lLock] ) If lLock is set to true, the row is locked for edit and lock is released after edit.
by nageswaragunupudi
Tue Sep 03, 2019 8:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: clarification respect a recordset
Replies: 14
Views: 3304

Preload data for using Xbrouwe EditSource(.T.)

... before the edit is shown. I don't see a array of predefined values in the xbrowse source code, but I can be wrong. Maybe I need to use the : oBrw:bEdit := { |oRec| Editfunction( oRec ) }
by Marc Venken
Wed May 01, 2019 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Preload data for using Xbrouwe EditSource(.T.)
Replies: 11
Views: 1418

Re: XBrowse & Edit Dialogs: Writing Portable code (Recommended)

on xbrowse :bEdit := { |oRec| EditRecord( oRec ) } In case of TDatabase or Mariadb RowSet, you better assign this to the table object like this: oClienti:bEdit := { |oRec| EditRecord( oRec ) }  Then you need ...
by nageswaragunupudi
Thu Mar 28, 2019 12:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse & Edit Dialogs: Writing Portable code (Recommended)
Replies: 17
Views: 3675

Re: XBrowse & Edit Dialogs: Writing Portable code (Recommended)

... table oClienti := TDatabase():Open( , cPath+ "CLIENTI", "DBFCDX", .T. ) oClienti:SetOrder( 1 ) oClienti:GoTop() on xbrowse :bEdit := { |oRec| EditRecord( oRec ) } then I associated on buttons oBrwClienti:EditSource( .t. ) for add or oBrwClienti:EditSource( .f. ) for modify ...
by Silvio.Falconi
Wed Mar 27, 2019 6:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse & Edit Dialogs: Writing Portable code (Recommended)
Replies: 17
Views: 3675

Re: Error al insertar registro con Clase MariaD

Nuevamente Gracias
Soy nuevo en esto, el cambio de utilizar DBF a Sql, no es facil. Pero hay voy.
Tengo una duda en esta linea.

oRs:bEdit := { |oRec| EditCatastro( oRec ) }
oRec nos da la posicion del registro en el ORs
by Adolfredo Martinez
Thu Feb 21, 2019 1:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al insertar registro con Clase MariaD
Replies: 10
Views: 1274

Re: FWH 19.01: Recycling Deleted Records

... .t. ). When the dialog is edited and saved the recycling feature is automatically used. You can use your custom dialog by setting oBrw:bEdit := { |oRec| MyEditDlg( oRec ) } When you save the edit with oRec:Save(), the feature is automatically saved. For appending known values, without ...
by nageswaragunupudi
Wed Feb 20, 2019 1:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 19.01: Recycling Deleted Records
Replies: 6
Views: 1434

To Nages: tdatarow add new

... cFilter2)   oServiziMultipli:GoTop()  and I create the xbrowse with no setodbffunc but with datasource command then I add oBrw1:bEdit := { |oRec| EditServizi( oRec,oBrw1 ) } on Editsource function I must cal the new number on cId if lAdd Function EditServizi( oRec,oBrw  )  ...
by Silvio.Falconi
Wed Feb 06, 2019 12:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages: tdatarow add new
Replies: 3
Views: 806

other of Tdatarow of fwh

... ID := strzero(RECNO(),4), nil )} oServiziSingoli:SetOrder( 1 ) oServiziSingoli:setFilter( cFilter1) oServiziSingoli:GoTop() On edit I made oBrw1:bEdit := { |oRec| EditServizi( oRec ) } and on this function Function EditServizi( oRec  )   local lAdd  := ( oRec:RecNo == 0 )   local ...
by Silvio.Falconi
Mon Feb 04, 2019 3:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: other of Tdatarow of fwh
Replies: 5
Views: 976

Error with Tdatarow - only for test - RESOLVED

I'm trying to create a dialog for edit a record with tdatabase oBrw:bEdit := { |oRec| EditServizi( oRec ) } @ 300,328 BUTTON "ADD" SIZE 100,40 PIXEL OF oDlg ACTION oBrw:EditSource() https://i.postimg.cc/gJgN7F2X/gggg.png when I add ...
by Silvio.Falconi
Fri Feb 01, 2019 10:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error with Tdatarow - only for test - RESOLVED
Replies: 6
Views: 672

Re: Error from ADO

... Enhancement to method EditBaseRecord(...) Added optional new 5th param, lLock (default .f.) Revised syntax: EditBaseRecord( [cFieldList], [lNew], [bEdit], [oBrw], [lLock] ) If lLock is set to true, the row is locked for edit and lock is released after edit. Hi Mr. Rao, We set .T. to 5th param in ...
by Horizon
Wed Nov 14, 2018 2:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error from ADO
Replies: 14
Views: 3503

Re: Error from ADO

Whatsnew.txt

FWH 18.06

- Enhancement to method EditBaseRecord(...)
Added optional new 5th param, lLock (default .f.)
Revised syntax:
EditBaseRecord( [cFieldList], [lNew], [bEdit], [oBrw], [lLock] )
If lLock is set to true, the row is locked for edit and lock is released after edit.
by nageswaragunupudi
Wed Nov 14, 2018 2:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error from ADO
Replies: 14
Views: 3503
Next

Return to advanced search