Search found 118 matches: cdbf

Return to advanced search

Re: How does mod harbour work

Dear team, I kindly want to ask another question about "How does mod harbour work". On some occasions I get very useful error messages - like for example Error: LOCAL declaration follows executable statement operation: line:593 called from: HB_COMPILEFROMBUF, line: 0 called from: ..\sourc...
by Antonio Linares
Mon Jan 15, 2024 12:38 pm
 
Forum: mod_harbour
Topic: How does mod harbour work
Replies: 8
Views: 1181

Re: How does mod harbour work

Dear team, I kindly want to ask another question about "How does mod harbour work". On some occasions I get very useful error messages - like for example Error: LOCAL declaration follows executable statement operation: line:593 called from: HB_COMPILEFROMBUF, line: 0 called from: ..\source...
by Ruth
Mon Jan 15, 2024 9:35 am
 
Forum: mod_harbour
Topic: How does mod harbour work
Replies: 8
Views: 1181

Re: DBF . Commit

Enrico, what's not working is: ? FILEDATE( cDbf ), FILETIME( cDbf ) I made a PS script which I call from the test program and get the right time and values. FOR I := 1 to 5000 APPEND BLANK REPLACE FIELD ->test WITH "TEST"+ str(i) ...
by Otto
Sun Oct 22, 2023 10:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2321

DBF REDE/WEB WINDOWS 7/10/11

... + "MULTIFUN"+"-") ) cPath = "C:\REDEDB" aArq ="MULTIFUN" // - contém o nome do arquivo DBF cDbf =".DBF" // - extensao cCaminho = "//192.168.1.165:2812/multifun.dbf" cAlias = "MULTIFUN" SELECT 1 dbUseArea( .F.,DBSETDRIVER(), ...
by wanderson8
Sun Jan 08, 2023 3:10 pm
 
Forum: All products support
Topic: DBF REDE/WEB WINDOWS 7/10/11
Replies: 0
Views: 9328

Re: StyleBrowse( oBrw ) ???

... maybe xbrowsers. The layout will be always the same then. @ nTop,nLeft XBROWSE oBrw size nBreed,nHoogte PIXEL OF oTarget font oFont ; DATASOURCE cDbf ; .... StyleBrowse(oBrw, aBrwGet, aBrwEdit ,cData ) .... Static Function StyleBrowse( oBrwSel, aBarget, aEditget, cNaam )   LOCAL ...
by Marc Venken
Tue Dec 06, 2022 9:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: StyleBrowse( oBrw ) ???
Replies: 8
Views: 565

Re: W3Schools webpage template "COMPANY" to mod harbour

Ruth, https://mybergland.com/fwforum/dbf2hash2.jpg You have included a function here that fills 2 HASHs. The database is opened with USE(). Then you browse the database with do while .not. eof() skip enddo You then fill the local HASH local hDBF_Recs := {=>} and the hSLIDER (static) H...
by Otto
Tue May 17, 2022 7:10 am
 
Forum: mod_harbour
Topic: W3Schools webpage template "COMPANY" to mod harbour
Replies: 7
Views: 816

INI-files and mod harbour

... the dbf and chceks for the keys - If the keys exist, updates the value in the dbf - Otherwise appends a new entry with the values. EditIniDBF( cDbf ) - If the dbf does not exist and user wants to create, then the dbf is created - User can edit values and/or append new values. */ I am not yet ...
by Otto
Mon Jan 03, 2022 8:21 am
 
Forum: mod_harbour
Topic: INI-files and mod harbour
Replies: 2
Views: 223

Re: Import/Export from/to CSV files (; separator)

Correct function Builddbf(aHeader,Alengte,cDbf,cdeli) local aStru := {} local aFields := HB_ATokens(aHeader[1], cdeli ) for i = 1 to len(aFields) cField = (aFields[i]) aAdd( aStru, { cField , "C", 255 , 0 } ) // I insert 255 is the ...
by Silvio.Falconi
Wed Nov 25, 2020 7:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Import/Export from/to CSV files (; separator)
Replies: 16
Views: 2171

Re: Import/Export from/to CSV files (; separator)

... the source code complete ? This function i have found on the forum. What would you like more ? the problem is on function Builddbf(adata,Alengte,cDbf) if the header is Articolo;variante;Simili;Codice;Descrizione;Desc_breve;Desc_sint;tecnica;Reparto;Categoria;Marca;Codice_pro;misura;Esistenza;Disponib;Ubicazione;EAN13;Code128;Code39;Immagine;Tipocosto;Costo;Prezzo_ven;Ultprezzo;Aliquota;Note;Note_testo;Allegati;Conto_ven;Conto_acqu ...
by Silvio.Falconi
Wed Nov 25, 2020 7:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Import/Export from/to CSV files (; separator)
Replies: 16
Views: 2171

Re: chenge on line a combo

... local aHdrs := { "Cognome","Nome","Indirizzo","Città", "Provincia"} local cDbf := "Cust" USE CUSTOMERI ALIAS CUST ..... Tabella(aColumns,aHdrs,cDbf,"Selezione Clienti","Cli") RETURN NIL Function ...
by Silvio.Falconi
Fri Nov 13, 2020 11:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change on line a combo
Replies: 24
Views: 5336

Re: New FTDN August/Agosto 2020 (FWH 20.08)

... la tabla. Ahora, cTable también puede ser una Vista y devuelve la sentencia SQL para crear la vista. - Enhanced method SaveToDBF( cTable/cSql, cDbf/cNewAlias, lForUpdate ) Si el segundo parámetro es un nombre de alias no utilizado, se crea una base de datos temporal con ese alias con los datos. ...
by Antonio Linares
Tue Sep 22, 2020 4:33 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2020 (FWH 20.08)
Replies: 3
Views: 2299

New FTDN August/Agosto 2020 (FWH 20.08)

... ) --> SQL to create the table. Now, cTable can be a View also and returns SQL to create the view. - Enhanced method SaveToDBF( cTable/cSql, cDbf/cNewAlias, lForUpdate ) If the 2nd parameter is an unused alias name, a temporary dbf with that alias is created with the data. This can be used ...
by Antonio Linares
Sun Sep 20, 2020 11:38 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2020 (FWH 20.08)
Replies: 3
Views: 2299

Re: New FTDN December 2019 (FWH 19.12)

... es .T., el mombre del fichero ejecutable sin el camino, es almacenado como "Application" en METADATA. * Function FW_AdoExportToDBF( oRs, cDbf, [lEditStruct] ) Cuando el conjunto de registros tiene un campo de AutoIncrement, ese campo también se crea como un campo de autoincrement en DBF. ...
by Antonio Linares
Thu Jan 02, 2020 12:45 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December 2019 (FWH 19.12)
Replies: 2
Views: 3027

New FTDN December 2019 (FWH 19.12)

... or a logical .T.. If .t., the name of the exe without path is stored as "Application" in METADATA. * function FW_AdoExportToDBF( oRs, cDbf, [lEditStruct] ) When the recordset has AutoIncrement field, that field is being created as an autoincrement field in DBF also. This resuls in ...
by Antonio Linares
Sat Dec 21, 2019 5:59 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December 2019 (FWH 19.12)
Replies: 2
Views: 3027

Pregunta "Replace existing table...?" (SQL)

Hola a todos,

Cuando utilizo:

oConDB:ImportFromDBF( cDBF, cTable, ...)

si la tabla ya existe el sistema me pregunta "Replace existing table...?", es posible omitir esta pregunta y que por defecto realice la importación?

Muchas gracias,
by FiveWiDi
Thu Aug 15, 2019 9:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta "Replace existing table...?" (SQL)
Replies: 0
Views: 339
Next

Return to advanced search