Search found 31 matches: antiduplicate

Return to advanced search

Re: AntiDuplicate

Hi Antonio,

No rush ... I was just following up.
I am currently in Quebec City. When I return home I will be busy packing (I move to my new house on June 25th) so my time too is limited these days :)
by Jeff Barnes
Fri Jun 11, 2010 8:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

Jeff,

I have been busy with FWH 64 and the new Class TExplorerBar and had no time to continue.

Lets see if we can make some more progress on this :)
by Antonio Linares
Wed Jun 09, 2010 4:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

Hi Antonio,

Any success ? or is this just something that will not work with FWH ?
by Jeff Barnes
Tue Jun 08, 2010 10:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

It looks like the numbers change every time I run the program. Valid Run 1: 237 34 150 218 38 250 85 235 6 144 164 164 251 98 138 209 55 135 68 43 52 231 43 230 180 7 83 50 63 15 254 131 141 177 76 128 129 249 177 5 73 65 185 68 130 29 86 102 54 184 192 130 80 17 86 128 91 95 14 5 155 149 21 14 156 ...
by Jeff Barnes
Fri May 28, 2010 7:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

Nothing connected: 197 218 200 99 245 25 138 175 107 43 20 89 14 148 136 200 162 93 109 46 8 207 237 5 124 75 16 66 218 33 9 75 135 218 211 174 110 108 38 136 121 191 43 201 181 223 101 238 123 114 124 147 222 92 44 197 138 117 10 31 199 202 69 87 251 186 16 120 32 17 228 79 51 82 81 75 128 240 68 1...
by Jeff Barnes
Fri May 28, 2010 7:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

Jeff,

Being not empty means that the DLL is placing some info inside the variable acck.

So now, please inspect what there is inside it, in each case:
Code: Select all  Expand view

   for n = 1 to Len( acck )
      MsgInfo( Asc( SubStr( acck, n, 1 ) ) )
   next
 
by Antonio Linares
Fri May 28, 2010 6:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

The "copy" returns: .f.
The "valid" one returns: .f.
The non programmed one returns: .f.
Nothing in the USB slot returns: .f.
by Jeff Barnes
Fri May 28, 2010 6:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

Jeff,

Please try now this code:
Code: Select all  Expand view

   local acck := Space( 100 )

   Accdd1( acck )
   MsgInfo( Empty( acck ) )
   ...
 
DLL FUNCTION Accdd1( c AS LPSTR ) AS VOID PASCAL LIB "Aas973.dll"
 
by Antonio Linares
Fri May 28, 2010 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

Jeff,

ok, thanks, we are progressing :-)
by Antonio Linares
Fri May 28, 2010 5:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

With nothing in the usb drive we get: 2
With a USB stick in but not programmed we get: 1
With a valid USB stick we get: 7
With a copied USB stick we get: 7
by Jeff Barnes
Fri May 28, 2010 5:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

Jeff,

Ok, thanks. They are using mixed upper and lower case symbol names.

Then please try this code:
Code: Select all  Expand view

   MsgInfo( Fddig1( 0 ) )
   ...
 
DLL FUNCTION Fddig1( n AS LONG ) AS LONG PASCAL LIB "Aas973.dll"
 
by Antonio Linares
Fri May 28, 2010 4:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

Antonio,

here it is:

Code: Select all  Expand view

LIBRARY     AAS973.DLL

EXPORTS
    Accdd1                         @1   ; Accdd1
    Accdd2                         @3   ; Accdd2
    Dscbf1                         @5   ; Dscbf1
    Fddig1                         @2   ; Fddig1
    FddigV                         @4   ; FddigV

 
by Jeff Barnes
Fri May 28, 2010 12:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

Jeff,

Please provide a url to download just the DLL, thanks

Or simply create a DEF file from it and publish it here:
c:\bcc582\bin\impdef.exe name.def name.dll

name.def will contain all the DLL exported functions names. It is an ascii file that you can copy here
by Antonio Linares
Fri May 28, 2010 6:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

It returns "nil" with or without the usb memory stick connected.

I sent an email to your gmail account.
It has a link to some additional files that should help.
by Jeff Barnes
Fri May 28, 2010 1:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649

Re: AntiDuplicate

Jeff,

Please try this:
Code: Select all  Expand view

   MsgInfo( Fddig1( 0 ) )
   ...
 
DLL FUNCTION FDDIG1( n AS LONG ) AS LONG PASCAL LIB "Aas973.dll"
 

A value below 7 means that there is No Key drive in the USB port
by Antonio Linares
Thu May 27, 2010 11:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AntiDuplicate
Replies: 25
Views: 3649
Next

Return to advanced search