Search found 113 matches: nrecno

Return to advanced search

Re: today problem with savetodbf

'Silvio, but before you can save a record you have to navigate to the recNo METHOD GoTo( nRecNo ) or insert a new record. METHOD Append() Why don't you create a function, SAVE () and pass your data? There you open your database again and save everything. And then closes ...
by Silvio.Falconi
Thu Aug 19, 2021 4:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: today problem with savetodbf
Replies: 19
Views: 1502

Re: today problem with savetodbf

'Silvio, but before you can save a record you have to navigate to the recNo METHOD GoTo( nRecNo ) or insert a new record. METHOD Append() Why don't you create a function, SAVE () and pass your data? There you open your database again and save everything. And then closes ...
by Otto
Thu Aug 19, 2021 4:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: today problem with savetodbf
Replies: 19
Views: 1502

Re: funcion FW_CdxCreate() (SOLUCIONADO)

... Extracts from Whatsnew.txt: FWH1409: * New: database.prg: New functions: 1)FW_FieldsPut( caFields, aValues, [nLockWaitSecs], [lAppend] ) --> nRecNo ( 0 if failure) ... 2)FW_CdxCreate( [caTagList] ) 3)FW_DBFSTRUCT( cDbfFile ) --> dbstruct() // without USEing the DBF FWH1709: * function ...
by nageswaragunupudi
Tue Apr 13, 2021 12:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funcion FW_CdxCreate() (SOLUCIONADO)
Replies: 4
Views: 739

Re: En RED Local generar un indice CDX en PC Local

... ; [TO <cIndexFile>] ; [FOR <lForCondition>] ; [WHILE <lWhileCondition>] ; [ALL] ; [NEXT <nNumber>] ; [RECORD <nRecNo>] ; [REST] ; [EVAL <bBlock>] ; [EVERY <nInterval>] ; [UNIQUE] ; [ASCENDING|DESCENDING] ; [USECURRENT] ; [ADDITIVE] ; [CUSTOM] ...
by carlos vargas
Wed Sep 02, 2020 5:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: En RED Local generar un indice CDX en PC Local
Replies: 1
Views: 338

Re: add fields to existing dbf

... local cOldBmp := GetProfString( "Desktop", "WallPaper" ) local oPrn, fntArial1, nRow, fntArial2, cName, cLoca, cPost local nRecNo := RecNo() local cTitle:= "Sociale Kruidenier Management - Field" local cText:= " veldnaam(max10)+N of C+99+9 ?" local cBmpfile:= ...
by jds
Thu Jul 23, 2020 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: add fields to existing dbf
Replies: 7
Views: 1423

Re: New FTDN September/Septiembre 2019 (FWH 19.09)

... antes del primer registro. Solucionado. - Skip( n ) ahora devuelve el número de registros saltados. - Eval( bAction, [bFor], [bWhile], [nNext], [nRecNo], [lRest] ) --> Self Sintaxis extendida. Todos los parámetros tienen la misma funcionalidad de DBEVAL (), bAction se evalúa con Self como ...
by Antonio Linares
Fri Oct 18, 2019 8:38 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2019 (FWH 19.09)
Replies: 1
Views: 3783

New FTDN September/Septiembre 2019 (FWH 19.09)

... to .T., when skipped past before the first record. Fixed. - Skip( n ) now returns nSkipped records. - Eval( bAction, [bFor], [bWhile], [nNext], [nRecNo], [lRest] ) --> Self Extended syntax. All parameters have the same functionality of DBEVAL() bAction is evaluated with Self as paramter. After ...
by Antonio Linares
Sun Oct 13, 2019 11:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2019 (FWH 19.09)
Replies: 1
Views: 3783

Re: Nuevas funciones harbour para tablas dbf

... ; [TO <cIndexFile>] ; [FOR <lForCondition>] ; [WHILE <lWhileCondition>] ; [ALL] ; [NEXT <nNumber>] ; [RECORD <nRecNo>] ; [REST] ; [EVAL <bBlock>] ; [EVERY <nInterval>] ; [UNIQUE] ; [ASCENDING|DESCENDING] ; [USECURRENT] ; [ADDITIVE] ; [CUSTOM] ...
by carlos vargas
Fri Aug 23, 2019 6:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevas funciones harbour para tablas dbf
Replies: 10
Views: 1768

Re: Xbrowse : aBarGetlist reposition record after change

nRecNo := oBrw:BookMark

oBrw:BookMark := nRecNo
by nageswaragunupudi
Fri Mar 08, 2019 2:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : aBarGetlist reposition record after change
Replies: 5
Views: 891

Re: Como Puedo Imprimir Campo Memo FPT

... endif olbx:refresh() return nil *-------------------------------------- FUNCTION HC0100LI10() *-------------------------------------- local nRecno public oReport public oLis,l,nsalto,ncolum,xhoja,oFont,oFont1,xmarca public texto1 public texto2 PRINTER oLis PREVIEW NAME "H.C." DEFINE ...
by pedroluis
Wed Mar 06, 2019 1:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir Campo Memo FPT AYUDA URGENTE Para Cesar Gomez
Replies: 14
Views: 3442

Re: New FTDN January/Enero 2019 (FWH 19.01)

... - Para aprovechar esta nueva característica, los nuevos registros deben ser añadidos usando la dunción de FWH DBFAPPEND() --> nRecNo. (Registro recién agregado o reciclado, 0 en caso de error) . Ejemplo de uso: if DBFAPPEND() > 0 // assign values to fields DBUNLOCK() endif ...
by Antonio Linares
Mon Feb 11, 2019 6:37 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2019 (FWH 19.01)
Replies: 4
Views: 3841

New FTDN January/Enero 2019 (FWH 19.01)

... - To avail this feature, new records should be appended using FWH function DBFAPPEND() --> nRecNo (Newly appended or recycled record. 0 on failure) Example usage: if DBFAPPEND() > 0 // assign values to fields DBUNLOCK() endif instead of ...
by Antonio Linares
Mon Feb 11, 2019 1:08 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2019 (FWH 19.01)
Replies: 4
Views: 3841

Re: funciones de FWH y Harbour en un archivo .txt

... ADSBlob2File(cFileName,cFieldName)->lSuccess ADSClearAOF()->Nil ADSCustomizeAOF([<nRecno|aRecNos>],[<nType>])->nSuccess AdsDDRemoveTable(<cTableName>,<deleteFile>,[<nConnection>])-><lResult> ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 6394

TDatabase FWH 17.08 : Datas and Methods

... Returns field type of nth field. 40. Found() Returns success of immediately preceeding Seek or Locate() 41. GoBottom() Go to last record 42. GoTo( nRecNo ) Go to nRecNo 43. GoTop() Goes to first record 44. IndexBagName( [nInd] ) Order bag name of index tag at position nInd, if specified or else ...
by nageswaragunupudi
Fri Sep 15, 2017 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase FWH 17.08 : Datas and Methods
Replies: 1
Views: 1851

Re: Rowset data and method is not working.

... then this represents the serial number of the record in the apparent sorted order ignoring the deleted records and filtered out records. GoTo( nRecNo ) or // like DBF BookMark := nRecNo // like ADO Moves to record whose record number is nRecNo. If the record with nRecNo is deleted, record pointer ...
by nageswaragunupudi
Mon Feb 06, 2017 12:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rowset data and method is not working.
Replies: 2
Views: 857
Next

Return to advanced search