- Код: Выделить всё
Private Type UsrType
ID As String
Param As String
End Type
Private Sub Command1_Click()
Dim MyType As UsrType
Open "D:\TestLog.dat" For Random As #1 Len = Len(MyType)
MyType.ID = "first_id"
MyType.Param = "param_1"
Put #1, 1, MyType
Close #1
End Sub
Но не работает зараза. Пишет все время "Bad record length". Я уже и не знаю что не так... Подскажите люди добрые...