Binary .dat files in VB .Net
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
Hi Guys, Does anyone know how to deal with leagcy binary .dat files in VB .Net i have a few systems in VB 6 that write to .dat files 1 example is the following structure / type: Type AccountDat cAccount As String * 12 cCompany As String * 32 cAddress(3) As String * 32 cTelFax(1) As String * 18 cContact As String * 22 nPriceLevel As Integer nStop As Integer nCash As Integer nFirst As Long nLast As Long nLimit As Long nBalance(4) As Long nLock As Integer End Type Type AccountIdx cAccount As String * 12 nRecord As Long End Type My question is how do i handle these files in VB .Net Thanks Keith