Claudio,
>
> I found the driver installer, I guess it's 64 bits. Motorola_End_User_Driver_Installation_5.5.0_64bit.msi
>
> Claudio H
As xHarbour is generating 32-bit executables, you will need to search and install a 32-bit driver ( although I can't tell what would happen if both the 32 and 64 bit versions were present on the same computer )
About .NET assembblies: the manifest sequence is embedded in the .exe or .dll, so you probably will need to examine it with a hexa viewer:
http://superuser.com/questions/103071/quick-way-to-tell-if-an-installed-application-is-64-bit-or-32-bit
.........................
If you have a hex editor program, just open your file with it and shortly after the standard header intro stuff (like "This program cannot be run in DOS mode...") you will see either
"PE..L" (hex code: 504500004C) = 32 bit
or
"PE..d†" (hex code: 504500006486) = 64 bit
Ella