Search found 22 matches: dirs

Return to advanced search

Errors with test.mak, FW 32 bit, bcc582

... drive C is unlabeled Serial number is c6ea:9093 Directory of C:\bcc582\include\stdarg.h 9/08/2006 11:50 1,373 stdarg.h 1,373 bytes in 1 file and 0 dirs 4,096 bytes allocated 120,397,197,312 bytes free [C:\fwh\makes\Borland]dir c:\harbour\bin\harbour.exe Volume in drive C is unlabeled Serial number ...
by FWExplorer
Fri Nov 27, 2020 2:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Errors with test.mak, FW 32 bit, bcc582
Replies: 4
Views: 566

Re: FWH, VPN and SMB

Hello Michel,
Install remote desktop.
Create for every PC you have in the office a directory and clone the local dirs to the server.
Then create for every user a user account. This is the way to go.

Best regards,
Otto
by Otto
Sun Apr 19, 2020 10:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH, VPN and SMB
Replies: 27
Views: 2508

Re: Saving photos

... a memo field. The file became very big and slow down over network. I changed to a Char. field into de dbf with a link to the picture. I have 2 sub dirs with foto's 1. Very small tumbs 2. Printable 300 dpi versions. For the thumbs and correct sizes, I call nconvert -out jpeg -ratio -overwrite -resize ...
by Marc Venken
Tue Mar 05, 2019 11:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving photos
Replies: 7
Views: 1531

Re: Function list builder application

... I see that your program already shows all functions into a opende prg. Maybe a extra tool for it if you could read the fwh dirs and fetch all the functions insite it, and show it like you already do, only it will be for all prg's ? I think Mr Rao developed this tool https://s21.postimg.org/k9nzj3ofr/Fivedit46.png ...
by cnavarro
Sat Jun 17, 2017 8:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Function list builder application
Replies: 16
Views: 3027

Re: Function list builder application

... I see that your program already shows all functions into a opende prg. Maybe a extra tool for it if you could read the fwh dirs and fetch all the functions insite it, and show it like you already do, only it will be for all prg's ?
by Marc Venken
Sat Jun 17, 2017 7:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Function list builder application
Replies: 16
Views: 3027

Re: Need CURL syntax with fivewin using HBCURL LIB?

Here it is: /* * libcurl 'easy' API - Harbour header. * * Copyright 2008 Viktor Szakats (vszakats.net/harbour) * originally based on: * Copyright 2005 Luiz Rafael Culik Guimaraes <luiz at xharbour.com.br> * * This program is free software; you can redistribute it and/or modify * it under the t...
by ADutheil
Tue Nov 01, 2016 3:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need CURL syntax with fivewin using HBCURL LIB?
Replies: 10
Views: 4800

Re: Harbour 3.4 (from Viktor) 2014-29-06

... manual references to Harbour core components from makefiles and custom environment. F.e. it's commom mistake to add C compiler header and/or lib dirs, Harbour core header and/or lib dirs, built-in constants to makefiles or environment. No such thing is necessary as all of these are automatically ...
by Antonio Linares
Sat Jul 05, 2014 2:21 pm
 
Forum: WhatsNew / Novedades
Topic: Harbour 3.4 (from Viktor) 2014-29-06
Replies: 4
Views: 3313

tip: archivos necesarios para BCC 6.60

... include 02/05/2013 04:53 <DIR> lib 0 archivos 0 bytes [...] [...] Total de archivos en la lista: 2158 archivos 110.550.201 bytes 41 dirs Finalmente, hay que editar bin\bcc32.cfg e bin\ilink32.cfg para poner adecuadamente el path . Antonio ha comentado que si hay gente suficiente ...
by lucasdebeltran
Sat May 18, 2013 10:29 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: tip: archivos necesarios para BCC 6.60
Replies: 2
Views: 623

tip: files needed for BCC 6.60

... include 02/05/2013 04:53 <DIR> lib 0 archivos 0 bytes [...] [...] Total de archivos en la lista: 2158 archivos 110.550.201 bytes 41 dirs Antonio, do you plan to compile FWH with latest BCC 6.60?. Thank you.
by lucasdebeltran
Sat May 18, 2013 9:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tip: files needed for BCC 6.60
Replies: 7
Views: 1284

Re: How to remove a directory with sub dirs and files in it?

EMG, I intend to copy all files and folders even if they are empty deletedir is perfect! The following example does the same job for me:   local oFs   oFs   := CreateObject( "Scripting.FileSystemObject" )   // copy all subfolders (empty also) of f:\db...
by nageswaragunupudi
Sat Mar 03, 2012 12:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to remove a directory with sub dirs and files in it?
Replies: 12
Views: 2240

Re: How to remove a directory with sub dirs and files in it?

Mr Otto To delete a folder with all its sub-folders and all contents you may try DeleteFolder() method FileSystemObject. Here is a function implementing it. function DeleteFolder( cFolderToDelete )   local oFs   oFs   := CreateObject( "Scripting.FileSystemObject" )   if oFs...
by nageswaragunupudi
Fri Mar 02, 2012 10:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to remove a directory with sub dirs and files in it?
Replies: 12
Views: 2240

Re: How to remove a directory with sub dirs and files in it?

EMG,
I intend to copy all files and folders even if they are empty


deletedir is perfect!
by MarcoBoschi
Thu Mar 01, 2012 10:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to remove a directory with sub dirs and files in it?
Replies: 12
Views: 2240

Re: How to remove a directory with sub dirs and files in it?

FUNCTION DELETEDIR( cDir, lRemove )    LOCAL aDir, cName    LOCAL i    DEFAULT lRemove := .T.    aDir = DIRECTORY( cDir + "\*.*", "D" )    FOR i = 1 TO LEN( aDir )        cName = aDir&#...
by Enrico Maria Giordano
Thu Mar 01, 2012 9:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to remove a directory with sub dirs and files in it?
Replies: 12
Views: 2240

Re: How to remove a directory with sub dirs and files in it?

Does exist a function that a function that allows me to copy all files and folders even if they are empty? IF I have this situation and I have to copy all structure the function directoryrecurse does not consider empty directories C:\cdx\FOTO\la\ABCD>tree /A C:. +---altro danno | +---sub one | \-...
by MarcoBoschi
Thu Mar 01, 2012 8:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to remove a directory with sub dirs and files in it?
Replies: 12
Views: 2240

Re: he conseguido un iphone

Mastintin, he creado un proyecto nuevo y he agregado la livfivephone.a que me dejastes y ahora ocurre esto: Build test4 of project test4 with configuration Debug PhaseScriptExecution "Run Script" build/test4.build/Debug-iphonesimulator/test4.build/Script-64DA86BD129C59C800575091.sh cd /Vol...
by softruz
Wed Dec 15, 2010 2:42 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: he conseguido un iphone
Replies: 644
Views: 129680
Next

Return to advanced search

cron