I have not stutrc of tagname.x
but I had tried how to read tagname.x from my program.
if you want it,I had been to send it to deng_lp.
I do not care if he want it to you.
Private Function GetInTouchTags(ByVal sInTouchPath As String) As Long
Dim sTagFileName As String
Dim sTagname As String
Dim bByte() As Byte
Dim hFileHandle As Long
Dim idx As Integer
Dim bp As Long
Dim sKey As String
lstTagBrowser.Clear
sTagFileName = sInTouchPath + "\TAGNAME.X"
If (Len(Dir(sTagFileName)) <= 0) Then
GetInTouchTags = 0
Exit Function
End If
hFileHandle = FreeFile
On Error GoTo GetInTouchTags_errHandle
Open sTagFileName For Binary Access Read As #hFileHandle
ReDim bByte(1) As Byte
bp = &H200 + 1
Do While bp < FileLen(sTagFileName)
Seek #hFileHandle, bp + &H54
bByte = InputB(1, #hFileHandle)