Search found 32 matches: nfile

Return to advanced search

Re: Dialogo que muestre como avanza un proceso

... nBufSize, oSay1, oSay2,; oMeter1, oSay3, oMeter2, lEnd, oDlg ) local n local hSource, hTarget local cBuffer := Space( nBufSize ) local nBytes, nFile := 0, nTotal := 0 local nTotSize := 0 for n = 1 to Len( aSource ) if ! File( aSource[ n ] ) MsgStop( "Fichero no encontrado: " + aSource[ ...
by FranciscoA
Wed May 20, 2009 10:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dialogo que muestre como avanza un proceso
Replies: 6
Views: 1717

Re: CopyFileEx

... nBufSize, oSay1, oSay2,; oMeter1, oSay3, oMeter2, lEnd, oDlg ) local n local hSource, hTarget local cBuffer := Space( nBufSize ) local nBytes, nFile := 0, nTotal := 0 local nTotSize := 0 for n = 1 to Len( aSource ) if ! File( aSource[ n ] ) MsgInfo( "Fichero no encontrado: " + aSource[ ...
by FranciscoA
Mon Feb 02, 2009 2:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CopyFileEx
Replies: 5
Views: 1854

Re: FTP si Funciona con Vista y no con XP

... nBufSize, oSay1, oSay2,; oMeter1, oSay3, oMeter2, lEnd, oDlg, oFTP ) local n local hSource local cBuffer := Space( nBufSize ) local nBytes, nFile := 0, nTotal := 0 local nTotSize := 0 local oFile for n = 1 to Len( aSource ) CursorWait() aSource[n]:=STRTRAN(aSource[n] , "" , "" ...
by jnavas
Thu Oct 02, 2008 3:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FTP si Funciona con Vista y no con XP
Replies: 2
Views: 1013

Re: FTP si Funciona con Vista y no con XP

... nBufSize, oSay1, oSay2,; oMeter1, oSay3, oMeter2, lEnd, oDlg, oFTP ) local n local hSource local cBuffer := Space( nBufSize ) local nBytes, nFile := 0, nTotal := 0 local nTotSize := 0 local oFile for n = 1 to Len( aSource ) CursorWait() aSource[n]:=STRTRAN(aSource[n] , "" , "" ...
by jnavas
Wed Oct 01, 2008 4:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FTP si Funciona con Vista y no con XP
Replies: 2
Views: 1013

FTP si Funciona con Vista y no con XP

... nBufSize, oSay1, oSay2,; oMeter1, oSay3, oMeter2, lEnd, oDlg, oFTP ) local n local hSource local cBuffer := Space( nBufSize ) local nBytes, nFile := 0, nTotal := 0 local nTotSize := 0 local oFile for n = 1 to Len( aSource ) CursorWait() aSource[n]:=STRTRAN(aSource[n] , "\\" , "\" ) if ! ...
by jnavas
Wed Oct 01, 2008 8:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FTP si Funciona con Vista y no con XP
Replies: 2
Views: 1013

New install in Vista and xHarbour/FWH 8.04 problem

Dear Antonio, I install xHarbour (Fivetechsoft) / FWH 8.04 in new notebook Windows Vista. I don't know, has it got any conflict. Thanks&regards, Dutch Error E2209 d:\xharbour\include\hbvmpub.h 65: Unable to open include file 'assert.h' Error E2209 d:\xharbour\include\stdarg.h 27: Unable to open ...
by dutch
Fri Jul 25, 2008 6:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New install in Vista and xHarbour/FWH 8.04 problem
Replies: 3
Views: 1046

Hello Otto

Why you don't use

nFile := fCreate( cDrive + 'TEST.TXT',0)
if nFile == -1
lReturn := FALSE
MsgInfo("Driver not present " )
else
fClose(nFile)
endif

Maurizio
by Maurizio
Tue Apr 01, 2008 4:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to check if a drive exists
Replies: 36
Views: 7346

Yo lo tengo asi : FUNCTION CreaTemporal1(cFile) Local aTempora := {}, nFile DO WHILE .T. nFile := cTempFile() nFile := SubStr(nFile,1,At(".",nFile)-1) IF Len(nFile)>6 nFile := SubStr(nFile,1,6) ELSE nFile := nFile+Replicate("0",6-Len(nFile)) ENDIF nFile ...
by Vital
Thu Sep 27, 2007 2:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como puedo generar archivos temporales facturacion en red
Replies: 6
Views: 1565

No hay de queso, nomas de papa :D

Y eso que en algunos casos, por error de dedo, a la variable le llame nFile cuando debía ser nFila, :oops:

Saludos, Armando
by Armando
Tue Feb 27, 2007 1:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir número de fila con Treport
Replies: 3
Views: 867

EasySoft: Intentalo así: FUNCTION Imprimir() LOCAL nFile := 0 REPORT oReporte bla bla bla .. COLUMN TITLE "Fila" DATA ++nfila 6 RIGHT COLUMN TITLE "Razón Social" DATA (cCliente)->CLI_NOM SIZE 60 LEFT COLUMN TITLE "Plazo" DATA (cCliente)->CLI_DDP ...
by Armando
Mon Feb 26, 2007 6:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir número de fila con Treport
Replies: 3
Views: 867

Re: TESTZIP

... with the * HB_UNZIPFILE() function, so you can use returned result in the code * block. See example below. * $EXAMPLES$ * FUNCTION MAIN() * Local nFiles := HB_GETUNZIPFILE( "test.zip" ) * * if nFiles > 0 * ? "This files Contains ", nfiles * endif * * Return Nil * * Here is an example of How ...
by Enrico Maria Giordano
Fri Jan 05, 2007 11:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TESTZIP
Replies: 3
Views: 1995

Problema con oFile:End() en comandos FTP

... lEnd, oDlg, oFTP ) //-------------------------------------------------------------------- local n, hTarget, cBuffer := Space( nBufSize ), nBytes, nFile := 0, nTotal := 0, nTotSize := 0 local oFile, aFiles, aSizes := {} for n = 1 to Len( aSource ) aFiles = oFTP:Directory( aSource[ n ] ) if Len( ...
by carlosortiz
Thu Jul 27, 2006 1:54 pm
 
Forum: FiveWin para CA-Clipper
Topic: Problema con oFile:End() en comandos FTP
Replies: 4
Views: 1335

... (nil) Function FTPSendFiles ( aSource, aTarget, oFTP ) Local nBufSize:=4096 local n local hSource local cBuffer := Space( nBufSize ) local nBytes, nFile := 0, nTotal := 0 local nTotSize := 0 local oFile for n = 1 to Len( aSource ) if ! File( aSource[ n ] ) MsgStop( "Fichero no encontrado: " + aSource[ ...
by AngelSalom
Mon May 29, 2006 8:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: PROBLEMAS CON FTP
Replies: 6
Views: 2082

... with the * HB_UNZIPFILE() function, so you can use returned result in the code * block. See example below. * $EXAMPLES$ * FUNCTION MAIN() * Local nFiles := HB_GETUNZIPFILE( "test.zip" ) * * if nFiles > 0 * ? "This files Contains ", nfiles * endif * * Return Nil * * Here is an example of How ...
by Enrico Maria Giordano
Thu Feb 23, 2006 9:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ZIPS Functions
Replies: 11
Views: 4307

An old versión (ten years ago), but try this: . . . . . . @ nFile, nCol COMBOBOX oCbx VAR cCbx ; ITEMS aBase ("client.dbf", 42, "fieldnom" ) . . . . . . . . // ----------------------------------------------------------------------- // Function ..: aBase ...
by Manuel Valdenebro
Sat Nov 12, 2005 1:09 pm
 
Forum: FiveWin for CA-Clipper
Topic: Combo Box and DBF fields
Replies: 5
Views: 1961
PreviousNext

Return to advanced search