Search found 836 matches: recno

Return to advanced search

Re: RAO advice on using Mysql

METHODS: RecCount(), LastRec(), KeyCount(),RecNo(), KeyNo() GoTop(),GoBottom(),GoTo(nRec),KeyGoTo(nKey),Skip(n) FCount(),FieldPos(c),FieldName(),FieldLen(),FieldDec(),FieldType() FieldGet(),FieldPut() SetOrder(cSort,,lDescend) Save() Close() or ...
by nageswaragunupudi
Fri Feb 02, 2024 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 979

Re: copy a row of xbrowse

... change acopy[1] with new codsep MENUITEM "Paste" WHEN acopy!=NIL ACTION ( ; oBrw:Lock(), ; aCopy[ 1 ] := codsep ,; aCopy[ 8 ] := 0 ,; //recno aadd( oBrw:aArrayData, aCopy ),; oBrw:Unlock( .t. ), ; acopy:=NIL ,; oBrw:RefreshCurrent(), oBrw:SetFocus() ) ENDMENU but when I modify it the ...
by Silvio.Falconi
Tue Dec 05, 2023 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5789

Re: To Nages: Record deleted but make error also

... of the corresponding fields of the DBF. I actually don't know why when I delete one it assigns a number in position 32, where I added the "recno" field as it is done on yunus.prg If I add and delete, a number is not inserted So we arrived at this conclusion which seems to work AEval( ...
by Silvio.Falconi
Wed Nov 22, 2023 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages: Record deleted but make error also RESOLVED
Replies: 3
Views: 277

To Nages: Record deleted but make error also RESOLVED

... 1624 )   Called from: TEST.PRG => TESTDEL( 131 )   Called from: TEST.PRG => MAIN( 26 ) TO save a xbrowse ( with array with 31 record + "recno()") I made Check if there are deleted records      if ! Empty( oBrowse:aDeleted )             AEval( oBrowse:aDeleted, { ...
by Silvio.Falconi
Wed Nov 22, 2023 9:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages: Record deleted but make error also RESOLVED
Replies: 3
Views: 277

Re: Problem with oBrowse:aDeleted

... re-save on archive There's probably something I don't understand I have two dbf Report.dbf (oDbf) Formati.dbf ( oDbfMod) have 30 fields +1 for recno() at first for editing I take a record on Report.dbf oRecord := oDbf:record() create am array from another archive  aDataForm := oDbfMod:DbfToArray( ...
by Silvio.Falconi
Tue Nov 21, 2023 9:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with oBrowse:aDeleted
Replies: 2
Views: 244

Re: 1st FWH + [x]Harbour 2017 international conference

... RDDs =========== DBF DBFFPT DBFBLOB DBFCDX DBFNTX DataBases in use ================ 1: => EMP RddName: DBFNTX ============================== RecNo RecCount BOF EOF 1 1 .F. .F. Indexes in use TagName Relations in use Classes in use: =============== 1 ERROR 2 HBCLASS 3 HBOBJECT 4 TFONT 5 WIN_OLEAUTO ...
by sirotoca
Wed Nov 15, 2023 9:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 1st FWH + [x]Harbour 2017 international conference
Replies: 68
Views: 265748

Re: Xbrowse : oBrw:ToArray (How to do it)

... RDDs =========== DBF DBFFPT DBFBLOB DBFCDX DBFNTX DataBases in use ================ 1: => EMP RddName: DBFNTX ============================== RecNo RecCount BOF EOF 1 1 .F. .F. Indexes in use TagName Relations in use Classes in use: =============== 1 ERROR 2 HBCLASS 3 HBOBJECT 4 TFONT 5 WIN_OLEAUTO ...
by sirotoca
Wed Nov 15, 2023 8:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : oBrw:ToArray (How to do it)
Replies: 13
Views: 957

Re: DBF . Commit

... saved I can append the data or edit the data and the last thing I do with dbfcdx is to move the record pointer after I write to the disk with GoTo Recno() ADO is a bit different with SQL .. Recordsets can be added to or edited one record at a time and when a committ is made all I do is issue oRs:Update(), ...
by Rick Lipkin
Tue Oct 24, 2023 4:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2342

Re: DBF . Commit

... or table is unlocked then just before this operations RDD writes all local modifications in table and index files. 2. DBSKIP(0) just like DBGOTO( RECNO() ) writes all local modifications (if any) and then discards local record buffer so record has to be read again when any field is accessed. 3. ...
by Carles
Mon Oct 23, 2023 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2342

Re: DBF . Commit

... available under DOS version 3.3 and above. Under DOS 3.2 or less, COMMIT flushes Harbour buffers to DOS. In a network environment, issuing a GO TO RECNO() or a SKIP0 will flush Clipper’s database and index buffers, but only a COMMIT will flush the buffers and perform a solid-disk write. Thus to ...
by karinha
Fri Oct 20, 2023 5:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2342

Re: DBF . Commit

Goto Recno() works the same .. physically moves the record pointer back to itself thereby flushing and writing the buffers

Rick Lipkin
by Rick Lipkin
Fri Oct 20, 2023 3:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2342

Re: not ISOEM(), ISANSI() or IsUTF8()

Size < 1 Kb, 255-32 Records, 1 x FIELD RECNO() -> CHR(x) This is the code for 255-32 records function Chars33to255()   local oXlsx   local cFile := "chars33to255.xlsx"   local n,na, c, cx  ...
by nageswaragunupudi
Thu Aug 31, 2023 6:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2095

Re: not ISOEM(), ISANSI() or IsUTF8()

... does not use "accent" Sign ) 2. How large is the dbf? Number of records and number of fields? Size < 1 Kb, 255-32 Records, 1 x FIELD RECNO() -> CHR(x)
by Jimmy
Thu Aug 31, 2023 6:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2095

Re: Explore Yunus and FW_dbftoarray and FW_SaveArrayToDBF

... is 100% fullprove ? Yes. Safe and 100% full-proof. You need to carefully study the functions used carefully to appreciate the logic. Will the recno's not change when deleting of adding items to the invoice that will be saved ? This is the basic behavior of DBFs. When records are deleted, recno()s ...
by nageswaragunupudi
Wed Aug 30, 2023 10:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Explore Yunus and FW_dbftoarray and FW_SaveArrayToDBF
Replies: 1
Views: 172

Explore Yunus and FW_dbftoarray and FW_SaveArrayToDBF

... Yunus and how to retrieve invoice items, update en save. These function are used, but i'm not that sure yet. These functions are based on a recno() that is added and depending on the delete status of a invoice item. Deleted items are NOT taken by the function and so only GOOD items will ...
by Marc Venken
Wed Aug 30, 2023 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Explore Yunus and FW_dbftoarray and FW_SaveArrayToDBF
Replies: 1
Views: 172
Next

Return to advanced search