Search found 56 matches: adrives

Return to advanced search

Re: Con un EXE buscar otro EXE

Utiliza la function HB_dirScan( "C:\", "*.exe" ), y analiza después el array que devuelve

XBRowse( HB_dirScan( "C:\", "*.exe" ) )

También seguramente necesites la function aDrives()
by cnavarro
Thu Sep 07, 2017 2:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Con un EXE buscar otro EXE
Replies: 2
Views: 588

New FTDN May/Mayo 2017 (FWH 17.05)

... used from Class TDialog: http://forums.fivetechsupport.com/viewtopic.php?p=201380 Luis example is working fine now * Fix: function ADrives() reported fix by Enrico was not included in FWH 17.04: http://forums.fivetechsupport.com/viewtopic.php?p=200545#p200545 Now it is ok. Many ...
by Antonio Linares
Sat May 20, 2017 10:15 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2017 (FWH 17.05)
Replies: 1
Views: 2427

Re: Bug in ADrives()

Great, thank you! :-)

EMG
by Enrico Maria Giordano
Mon May 08, 2017 5:21 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in ADrives() [Fixed]
Replies: 11
Views: 3154

Re: Bug in ADrives()

Enrico,

You are right

Already included for FWH 17.05

many thanks :-)
by Antonio Linares
Mon May 08, 2017 5:00 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in ADrives() [Fixed]
Replies: 11
Views: 3154

Re: Bug in ADrives()

Antonio,

you forgot to fix this in the latest FWH build. :-)

EMG
by Enrico Maria Giordano
Mon May 08, 2017 12:17 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in ADrives() [Fixed]
Replies: 11
Views: 3154

Re: Bug in ADrives()

many thanks
by Antonio Linares
Thu Apr 13, 2017 11:08 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in ADrives() [Fixed]
Replies: 11
Views: 3154

Re: Bug in ADrives()

Here it is: function ADrives( nType )  // Thanks to EMG   local aDisk := {}   local i   DEFAULT nType := 0   if nType = 0 .OR. nType = 1      for i = ASC( ...
by Enrico Maria Giordano
Thu Apr 13, 2017 9:59 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in ADrives() [Fixed]
Replies: 11
Views: 3154

Re: Bug in ADrives()

Could you post your code using ISDISK() ?

many thanks
by Antonio Linares
Thu Apr 13, 2017 9:42 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in ADrives() [Fixed]
Replies: 11
Views: 3154

Re: Bug in ADrives()

The problem is that ADrives() should return (and did before the recent Windows updates) only the existing drives in the system. In my PC it did return C, D AND E while now it wrongly returns all the drives from C to Z. Using ISDISK() instead of the NUL trick fixed the problem for me.

EMG
by Enrico Maria Giordano
Thu Apr 13, 2017 8:31 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in ADrives() [Fixed]
Replies: 11
Views: 3154

Re: Bug in ADrives()

What is exactly the problem ?
by Antonio Linares
Thu Apr 13, 2017 7:26 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in ADrives() [Fixed]
Replies: 11
Views: 3154

Re: Bug in ADrives()

Now I have the same Windows version of yours (1703 build 15063.138) and the problem is not fixed.

EMG
by Enrico Maria Giordano
Wed Apr 12, 2017 7:57 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in ADrives() [Fixed]
Replies: 11
Views: 3154

Re: Bug in ADrives()

Enrico, I just tested: #include "FiveWin.ch"function Main()   XBrowser( ADrives() )   return nil And it is working fine with Windows 10 Pro, version 1703, OSBuild 15063.138 What do you get? I get all the drives from C to Z after latest ...
by Enrico Maria Giordano
Wed Apr 12, 2017 5:30 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in ADrives() [Fixed]
Replies: 11
Views: 3154

Re: Bug in ADrives()

Enrico,

I just tested:
Code: Select all  Expand view
#include "FiveWin.ch"

function Main()

   XBrowser( ADrives() )
   
return nil


And it is working fine with Windows 10 Pro, version 1703, OSBuild 15063.138

What Windows 10 version are you using ?
by Antonio Linares
Wed Apr 12, 2017 5:11 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in ADrives() [Fixed]
Replies: 11
Views: 3154

Bug in ADrives() [Fixed]

With latest W10 update the function ADrives() is no longer working. To fix the problem, please replace

Code: Select all  Expand view
FILE( CHR( i ) + ":\NUL" )


with

Code: Select all  Expand view
ISDISK( CHR( i ) )


Hope ISDISK() is available in Harbour too.

EMG
by Enrico Maria Giordano
Wed Apr 12, 2017 8:24 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in ADrives() [Fixed]
Replies: 11
Views: 3154

Re: How to disable messages about empty USB-drives ?

Cristobal, thank You very much it seems all USB-ports are checked calling aDrives() If the USB is empty, a message is shown < please insert a data-medium >. Maybe there is somethig like a < autocheck > for USB inside the system-settings ( I don't ...
by hebert_j_vargas
Fri Jul 29, 2016 5:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to disable msg about empty USB-drives ? (solved)
Replies: 9
Views: 2758
Next

Return to advanced search