Search found 661 matches: cvs

Return to advanced search

Abrir carpeta contenedora

Hola buenas tardes para todos

En nuestra aplicación hacemos importación de varios archivos .CVS y de Excel, desde la aplicación podemos abrir el archivo como tal, pero como hago para abrir la carpeta que contiene el archivo?, entiendo que hay que abrir el explorador de archivos?

De antemano gracias.
by leandro
Wed May 04, 2022 7:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Abrir carpeta contenedora
Replies: 5
Views: 489

Re: fuente FW_ValidCreditCard

Moises

Yo desarrolle mi propia funcion partiendo de este codigo en visual basic: https://www.analysisandsolutions.com/so ... cvs-vb.htm

Valida el numero e identifica que tarjeta es.

Muchos saludos
by TecniSoftware
Sun Mar 01, 2020 2:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: fuente FW_ValidCreditCard
Replies: 7
Views: 1393

Re: Is there a way to change message in MsgMeter?

... ), "Total animals in these sequence:" )   EndIfRETURN Nil    I use the same system for index, create dbf and convert into xls,cvs,xlm
by Silvio.Falconi
Wed May 29, 2019 8:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Is there a way to change message in MsgMeter?
Replies: 6
Views: 751

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

My test Conversion DBF to cvs comand : DoTXT(ndelimiter) ndelimiter can be {";",",","|"} default 1 #include "FiveWin.ch"#include "FileIo.ch"FUNCTION GenTxt(ndelimiter)     MsgRun('Sto ...
by Silvio.Falconi
Thu Oct 11, 2018 8:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Import/Export from/to CSV files (; separator)
Replies: 16
Views: 2173

Re: appinvetor

I saw it run good also with ascii files ( cvs)
by Silvio.Falconi
Sat Apr 07, 2018 8:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: appinvetor
Replies: 2
Views: 799

Re: Fieldname limit to 10 char. giving problem

LOCAL cFileCSV := "c:\dircvs\name.cvs" oTxtFile := TTxtFile():New( cFileCSV, 0 ) oTxtFile:Skip() //skip the first line of the header while !oTxtFile:lEoF() ?StrToken( oTxtFile:cLine, 1, ";" ) ?StrToken( oTxtFile:cLine, ...
by Marc Venken
Tue Oct 25, 2016 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fieldname limit to 10 char. giving problem
Replies: 7
Views: 1582

Re: Fieldname limit to 10 char. giving problem

LOCAL cFileCSV := "c:\dircvs\name.cvs" oTxtFile := TTxtFile():New( cFileCSV, 0 ) oTxtFile:Skip() //skip the first line of the header while !oTxtFile:lEoF() ?StrToken( oTxtFile:cLine, 1, ";" ) ?StrToken( oTxtFile:cLine, ...
by aferra
Tue Oct 25, 2016 3:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fieldname limit to 10 char. giving problem
Replies: 7
Views: 1582

Re: Prestashop Mapping solution

... master DBF. Substitute the brackets with the file names you wish to use. USE [MASTER DBF] COPY STRUCTURE TO [TEMP DBF] USE [TEMP DBF] APPEND FROM [CVS FILE] DELIMITED Then you have to delete the first record since it will be the header record. This is the only reason you need a temp DBF. GO TOP ...
by James Bott
Fri Oct 21, 2016 2:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Prestashop Mapping solution
Replies: 17
Views: 9022

Re: Prestashop Mapping solution

Marc, Does the first record of the CSV files, contain the fieldnames? What do you mean when you say you want to link the DBF and CVS files? Do you want to import the files into a standard DBF format? You say the CSV files are random in structure. Do you mean they contain the same data ...
by James Bott
Thu Oct 20, 2016 4:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Prestashop Mapping solution
Replies: 17
Views: 9022

Re: xharbour last cvs error

Or, you are not using the correct compiler switches. :-)

EMG
by Enrico Maria Giordano
Mon Aug 29, 2016 7:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xharbour last cvs error
Replies: 15
Views: 3032

Re: xharbour last cvs error

Enrico,

Thanks.

Well they all make sense. So, I would say they made some improvements in the compiler to catch these issues.

James
by James Bott
Mon Aug 29, 2016 6:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xharbour last cvs error
Replies: 15
Views: 3032

Re: xharbour last cvs error

Sorry, no errors, only warnings: test.prg(11) Warning W0019  Duplicate declaration of Method 'METER'test.prg(28) Warning W0003  Variable: 'OMETER' declared but not used in function: 'TDATA_REINDEX(20)'test.prg(28) Warning W0003  Variable: 'OTEXT' declared but n...
by Enrico Maria Giordano
Mon Aug 29, 2016 6:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xharbour last cvs error
Replies: 15
Views: 3032

Re: xharbour last cvs error

Enrico,

Thanks for testing it.

Interesting that you got warnings and errors. I didn't get any when compiling it with my older version of FWH/xHarbour. Warnings I'm not concerned about, but what errors did you get?

Regards,
James
by James Bott
Mon Aug 29, 2016 4:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xharbour last cvs error
Replies: 15
Views: 3032

Re: xharbour last cvs error

Your sample, after corrected some errors and warning, compiles fine here: #include "fivewin.ch"Function Main()Return nilClass TData   Method New()   Method BuildIndex()   Method Meter()   Method Reindex() endcl...
by Enrico Maria Giordano
Mon Aug 29, 2016 8:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xharbour last cvs error
Replies: 15
Views: 3032

Re: xharbour last cvs error

Everyone: I noticed that I forgot to assign bFor a codeblock. So here is the updated test program. Norberto, Can you please test compile this sample with your new xHarbour version to see if it errors? James #include "fivewin.ch"Function Main()Return nilClass TData   Data Meter   Me...
by James Bott
Mon Aug 29, 2016 1:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xharbour last cvs error
Replies: 15
Views: 3032
Next

Return to advanced search

cron