Search found 61 matches: lmkdir

Return to advanced search

Re: Ejecutar comando de powershel o DOS

Paco, claro que no es el caso pero existen las funciones: lmkdir, lrmdir, lcddir. J. Ernesto su tu idea es obtener los nombres de los equipos en la RED podes usar ésta función. FUNCTION ListPC(Dominio)   Local aPcs:={}  ...
by acuellar
Fri Apr 11, 2014 5:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejecutar comando de powershel o DOS
Replies: 3
Views: 586

Re: lLFNMkDir is not returning neither true nor false

lMkDir () creates directories with long names, there is no need to use lLfnMkDir()

Code: Select all  Expand view
? lMkDir ("d:\Test with long names")  // return .t.

You can also use function MakeDir (<cDir>) from (x)Harbour
by StefanHaupt
Fri Jan 31, 2014 10:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: lLFNMkDir is not returning neither true nor false
Replies: 5
Views: 849

Re: lLFNMkDir is not returning neither true nor false

Thanks, but as I said in the message, the lMkDir IS working. What I need is the long name creation directory command AND the CRLF in the MsgWait command which both have a bug in the FWH library.
by ellano
Fri Jan 31, 2014 7:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: lLFNMkDir is not returning neither true nor false
Replies: 5
Views: 849

lLFNMkDir is not returning neither true nor false

... else MsgAlert( "Can't create long filename directory!" ) endif This command is not working on a Windows 7 64 bits. On the other hand, lMkDir is correctly working AND returning a true or false value FWH v12 And also MsgWait does not accept CRLF (even if replaced with CHR(13)+CHR(10))
by ellano
Thu Jan 30, 2014 10:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: lLFNMkDir is not returning neither true nor false
Replies: 5
Views: 849

Contribución al foro experiencia sobre Bases.mdb

... Function CreaBases(cBase) Local oCatalog Local oTable Local oColumn Local oKey cBase := Alltrim(cBase)+".mdb" lMKDir("Data") If !File(".\Data\"+cBase) oCataLog := CreateObject("ADOX.Catalog") oCataLog:Create("Provider=Microsoft.Jet.OLEDB.4.0;Jet ...
by juan carlos bellucci
Tue Jul 10, 2012 10:04 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Contribución al foro experiencia sobre Bases.mdb
Replies: 4
Views: 1957

Re: Problem with LMKDIR()

Michel, FWH function lMkDir() returns a logical value that it will be true if the function succeeds. This function is just a C wrapper to Windows API CreateDirectory(): http://msdn.microsoft.com/en-us/library/windows/desktop/aa363855(v=vs.85).aspx ...
by Antonio Linares
Thu Feb 23, 2012 7:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with LMKDIR()
Replies: 4
Views: 814

Re: Problem with LMKDIR()

Michel,

you can use MakeDir () from xHarbour. It returns the Dos errorcode, so you can check, what went wrong.

Dos error 0 -> success
Dos error 5 -> Dir exists
by StefanHaupt
Thu Feb 23, 2012 6:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with LMKDIR()
Replies: 4
Views: 814

Re: Problem with LMKDIR()

Michel,

maybe these Customers are trying to create Folders on C ?
They could have Problems with Administrator-rights ( not possible to create on C )

Best Regards
Uwe :?:
by ukoenig
Wed Feb 22, 2012 4:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with LMKDIR()
Replies: 4
Views: 814

Re: Problem with LMKDIR()

Hello, Is there a known problem with LMKDIR() ? I use it in my application to make different folders. I tested it here on my PC's with Windows XP, Windows 7 32-bits and Windows 7 64-bits. I noticed no problem here. But some customers are complaining ...
by FiveWiDi
Wed Feb 22, 2012 1:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with LMKDIR()
Replies: 4
Views: 814

Problem with LMKDIR()

Hello, Is there a known problem with LMKDIR() ? I use it in my application to make different folders. I tested it here on my PC's with Windows XP, Windows 7 32-bits and Windows 7 64-bits. I noticed no problem here. But some customers are complaining ...
by driessen
Wed Feb 22, 2012 12:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with LMKDIR()
Replies: 4
Views: 814

Re: Llenar GETS desde xbrowse

... NOMBCO, CTABCO, CTACTA, GRA, NREG, oDlg, oBrw STATIC TNUEVO := .T. FUNCTION MAIN() LOCAL oWnd, oBar, oMeter, oText SET Deleted On SET _3DLOOK ON lMkDir("DATA") IF .NOT. FILE ("DATA\BANCO.DBF") DbCreate( "DATA\BANCO", { { "BCO_CODIGO", "C", 12, ...
by Compuin
Sun Feb 13, 2011 11:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Re: Llenar GETS desde xbrowse (SOLUCIONADO)
Replies: 16
Views: 3310

Re: Llenar GETS desde xbrowse

... "XBrowse.ch" STATIC CODBCO, NOMBCO, CTABCO, CTACTA, GRA STATIC TNUEVO := .F. FUNCTION MAIN() LOCAL oWnd, oBar, oBrw, oDlg, oMeter, oText lMkDir("DATA") IF .NOT. FILE ("DATA\BANCO.DBF") DbCreate( "DATA\BANCO", { { "BCO_CODIGO", "C", 12, ...
by Compuin
Sun Feb 13, 2011 9:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Re: Llenar GETS desde xbrowse (SOLUCIONADO)
Replies: 16
Views: 3310

Re: Llenar GETS desde xbrowse

... GRA STATIC TNUEVO := .F. FUNCTION MAIN() LOCAL oWnd, oBar, oBrw, oDlg, oMeter, oText CODBCO := SPACE(12) NOMBCO := SPACE(30) CTABCO := SPACE(30) lMkDir("DATA") IF .NOT. FILE ("DATA\BANCO.DBF") DbCreate( "DATA\BANCO", { { "BCO_CODIGO", "C", 12, ...
by Compuin
Sun Feb 13, 2011 8:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Re: Llenar GETS desde xbrowse (SOLUCIONADO)
Replies: 16
Views: 3310

Re: Llenar GETS desde xbrowse (SOLUCIONADO)

... GRA STATIC lAceptar := .F. FUNCTION MAIN() LOCAL oWnd, oBar, oBrw, oDlg, oMeter, oText CODBCO := SPACE(12) NOMBCO := SPACE(30) CTABCO := SPACE(30) lMkDir("DATA") IF .NOT. FILE ("DATA\BANCO.DBF") DbCreate( "DATA\BANCO", { { "BCO_CODIGO", "C", 12, ...
by Compuin
Sun Feb 13, 2011 7:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Re: Llenar GETS desde xbrowse (SOLUCIONADO)
Replies: 16
Views: 3310

Problema al crear directorios.

... son del estilo: AMPA32\BLAT AMPA21\BLAT\OK AMPA32\BLAT\PDT ... lo hago con un usuario que es Administrador de la máquina y con la función lMkDir() de FiveWin para Harbour 9.03, y 'nivel' por nivel, por ejemplo: creo primero AMPA32, después BLAT y finalmente PDT. No he tenido problemas ...
by FiveWiDi
Tue Apr 20, 2010 10:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema al crear directorios.
Replies: 1
Views: 447
PreviousNext

Return to advanced search