I have to work with a file .idx of foxpro in intranet. But the harbour is read-only file .cdx.
I find on Google is an information saying that CA-Clipper 5.2 can read
Is there any way to read file .idx from HMG?
Thank you for your help
Find HMG version can read files .idx of foxpro ?
Moderator: Rathinagiri
- nguyenchiduc
- Posts: 78
- Joined: Sat Nov 13, 2010 7:27 am
- danielmaximiliano
- Posts: 2763
- Joined: Fri Apr 09, 2010 4:53 pm
- DBs Used: DBF
- Location: Argentina
- Contact:
Re: Find HMG version can read files .idx of foxpro ?
HI:
la Aplicacion VFP puede tener su carpeta de bases y archivos idx/cdx
..\bases <--- directory .Dbf
..\idxcdx Foxpro <------ directory .Cdx VFP
..\cdx HMG <------ directory HMG
dicha aplicacion HMG tiene que apuntar su respectivo directorio index
la Aplicacion VFP puede tener su carpeta de bases y archivos idx/cdx
..\bases <--- directory .Dbf
..\idxcdx Foxpro <------ directory .Cdx VFP
..\cdx HMG <------ directory HMG
dicha aplicacion HMG tiene que apuntar su respectivo directorio index
Code: Select all
use BASES\TABLA001 VIA "DBFCDX"
index on STR(BNUMEROT,3) + STR(BCLAVE01,4) tag compania to Indices\Tabla0001
*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*
Saludos / Regards
DaNiElMaXiMiLiAnO
Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
Telegram invitation https://t.me/HMGWorkspace
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*
Saludos / Regards
DaNiElMaXiMiLiAnO
Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
Telegram invitation https://t.me/HMGWorkspace
- nguyenchiduc
- Posts: 78
- Joined: Sat Nov 13, 2010 7:27 am
Re: Find HMG version can read files .idx of foxpro ?
Thank you!danielmaximiliano wrote:HI:
la Aplicacion VFP puede tener su carpeta de bases y archivos idx/cdx
..\bases <--- directory .Dbf
..\idxcdx Foxpro <------ directory .Cdx VFP
..\cdx HMG <------ directory HMG
dicha aplicacion HMG tiene que apuntar su respectivo directorio indexCode: Select all
use BASES\TABLA001 VIA "DBFCDX" index on STR(BNUMEROT,3) + STR(BCLAVE01,4) tag compania to Indices\Tabla0001
I had a temporary solution, while not trying to read the file structure .idx or REQUEST ADS solution
I will cache all .dbf files with index .idx on your PC, and reindex again .cdx. MY PC is a server
Note: The file .idx size nearly 200M. Should be no actual real-time interaction for the index again .cdx on workstations