Search found 172 matches: dbappend

Return to advanced search

Re: Parpadeo de un SAY

... ACTION oDlgMa:End() oAceptar:lTransparent = .t. oCancelar:lTransparent = .t. ACTIVATE DIALOG oDlgMa CENTERED if lSave if agrega Materia->(DbAppend()) Materia->Codigo := nCodigo endif Materia->Detalle := cDetalle Materia->Abrevia := cAbrevia Materia->Ramo := nRamo Materia->Costo ...
by José Camilo
Sat Mar 02, 2024 10:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Parpadeo de un SAY
Replies: 18
Views: 568

Re: Help with complex JSON

Solucionado nLen := Len( oSire:jsonPeriodo ) hJson:= oSire:jsonPeriodo If !Empty( nLen ) FOR EACH o IN hJson eje->(DBAppend()) eje->ejercicio := o["numEjercicio"] eje->desestado := o["desEstado"] FOR EACH e IN o["lisPeriodos"] per->(DbAppend()) ...
by CARLOS ATUNCAR
Sat Sep 23, 2023 9:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help with complex JSON
Replies: 12
Views: 1207

Re: Reitero consulta para actualizar un campo con XBrowse

... new use _ArtFor index _ArtFor1, _ArtFor2 new zap select ArtFor ArtFor->(DbGoTop()) While !ArtFor->(Eof()) select _ArtFor _ArtFor->(DbAppend()) _ArtFor->Articulo := ArtFor->Articulo _ArtFor->Detalle := ArtFor->Detalle _ArtFor->Abrevia := ArtFor->Abrevia _ArtFor->Costo ...
by José Camilo
Sun Feb 12, 2023 4:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Reitero consulta para actualizar un campo con XBrowse
Replies: 6
Views: 500

DBF: ROLLBACK (built-in feature)

... RollBack with more than one record in the same work area. While programming we need to remember this carefully. 2) RollBack does not work with DBAPPEND(). In real time applications, we need to use some work arounds. We already know the functions: dbCommit() // works on current work area and ...
by nageswaragunupudi
Sat Sep 10, 2022 4:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF: ROLLBACK (built-in feature)
Replies: 1
Views: 349

Sample for FW_stricmp()

... is different than target and make some note of it (array for xbrowse for example) 3 write the hash h := FW_RecToHash() select temp //temp->(dbappend()) not in this case // locate correct item and change = No problem FW_HashToRec( h ) select target
by Marc Venken
Thu Jun 17, 2021 7:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sample for FW_stricmp()
Replies: 0
Views: 324

Re: AYUDA PARA LEER XML DE FACTURA ELECTRONICA ( SOLUCIONADO )

... la informacion con la funcion Extrae() cFileXml := op:temp+"xml\"+aDir[a][1] cXml:=MEMOREAD( cFileXml ) && lee xml tmp->( DbAppend()) tmp->voucher := a tmp->orden := "1" tmp->fecha := Extrae("cbc:IssueDate",,.F.,cXml) tmp->vence := Extrae("cbc:IssueDate",,.F.,cXml) ...
by CARLOS ATUNCAR
Thu Apr 01, 2021 3:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA PARA LEER XML DE FACTURA ELECTRONICA ( SOLUCIONADO )
Replies: 6
Views: 1378

problemas al linkear

Hola. usando harbour y Fwh la ultima. Me arroja estos errores: [1]:iLink32.Exe -Gn -q -aa -Tpe -x @testMaria.bcl Error: Unresolved external 'WinMain' referenced from X:\HARB\BCC7\LIB\C0W32.OBJ Error: Unresolved external '_hb_vmProcessSymbols' referenced from X:\PROYECTOS\TEST\MARIA\OBJ\MARIA.OBJ Err...
by goosfancito
Thu Feb 04, 2021 9:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: problemas al linkear
Replies: 6
Views: 439

Re: Colgado al agregar un registro

Buenos dias, El programa se queda colgado, no siempre, solo en algunas ocasiones cuando se ejecuta la funcion dboto   (cAlias)->(dbAppend(lUnLock))   If !NetErr() // Si no hay error      (cAlias)->(dbgoto( (cAlias)->(RECNO())))  ...
by miarcod
Thu Oct 08, 2020 6:11 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Colgado al agregar un registro
Replies: 7
Views: 1038

Re: Ayuda con seleccion multiples archivos...(SOLUCIONADO)

... me funciona... Aqui un ejemplo de como quiero grabar los archivos seleccionados en la base de datos. do while !eof() cArchDoc := aFiles dbeseek() dbappend() replace ARCHDOC1 WITH cArchdoc DbSkip() enddo Es un pequeño trozo de codigo... Ya que me manda nil o array.... Gracias Ing. Cristobal. Saludos.
by ACC69
Tue Oct 29, 2019 9:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con seleccion multiples archivos...(SOLUCIONADO)
Replies: 10
Views: 1332

Re: To Nages : Explain me how I must make this tdatabase

... IF lNew IF (oDCli) -> (DbSeek (cCli)) (ODCli) -> (DbGoBottom ()) CCLI: = StrZero (Val ((oDCli) -> NumCli) +1.4) ENDIF (ODCli) -> (DbAppend ()) (ODCli) - NumCli>: = CCLI (ODCli) -> Priven: = Date () ENDIF IF! Rlock (oDCli) here the other rescues of the other fields It seems ...
by Silvio.Falconi
Mon Mar 04, 2019 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages : Explain me how I must make this tdatabase
Replies: 18
Views: 3313

FWH 19.01: Recycling Deleted Records

... 2. .T.. If set to .t., DBFAPPEND() will always try to recycle deleted records. 3. .F.. If set to .t., DBFAPPEND() does not recycle. Same as DBAPPEND() 4. NIL. If set to NIL, DBFAPPEND() adopts default behavior explained later. Use DBFAPPEND() instead of DBAPPEND() to use this feature. This ...
by nageswaragunupudi
Tue Feb 19, 2019 1:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 19.01: Recycling Deleted Records
Replies: 6
Views: 1423

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

... recién agregado o reciclado, 0 en caso de error) . Ejemplo de uso: if DBFAPPEND() > 0 // assign values to fields DBUNLOCK() endif en lugar de DBAPPEND() if !NetErr() // assign values ti fields DBUNLOCK() endif - Nueva función: FW_SetRecycleDeleted( uSet ) --> Configuración anterior Valores ...
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: 2696

New FTDN January/Enero 2019 (FWH 19.01)

... (Newly appended or recycled record. 0 on failure) Example usage: if DBFAPPEND() > 0 // assign values to fields DBUNLOCK() endif instead of DBAPPEND() if !NetErr() // assign values ti fields DBUNLOCK() endif - New function FW_SetRecycleDeleted( uSet ) --> Previous setting Possible values ...
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: 2696

Favor Ayuda PROGRAMA LENTO WINDOWS 10 64 Bits

... el Codigo que toma Este Tiempo. Sele GENEFAC Seek dtos(cFecha_exa) Do While (Fec_rec=dtoc(cFecha_exa).and.!eof()) Sele b // PasoGral do while .t. Dbappend() If !neterr() repl Nro_bon with a->Nro_bon,Nom_pac with a->Nom_pac Dbcommit() Dbunlock() Exit Else // Do ocupado Endif Enddo Sele d ...
by remtec
Wed Oct 10, 2018 12:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Favor Ayuda PROGRAMA LENTO WINDOWS 10 64 Bits
Replies: 6
Views: 1116

Re: Autoincrement field for DBFCDX

... , .T. ) DBG DbStruct() // gives ID , + , 4 , 0 ? FieldLen("ID") // 4 WHY TRUNCATED TO 4 ????????????????????????? FOR i := 1 TO 10001 DBAPPEND() NEXT ? Recno() , FIELD->ID // 10001 , 10001 FIELD->ID accepts a number with length 5 , DSTRUCT seems to give a wrong result !!! What ...
by nageswaragunupudi
Tue Mar 27, 2018 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Autoincrement field for DBFCDX
Replies: 9
Views: 1746
Next

Return to advanced search