Контрольная работа: Адресная книга на языка Visual Basic
End If
'Телефон
Case 7
If InStr(Trim(txtPhone.Text), sInfo) <> 0 Then
bInform = True
iCount = 0
Else
iCount = iCount + 1
End If
'Комментарий
Case 8
If InStr(Trim(txtComment.Text), sInfo) <> 0 Then
bInform = True
iCount = 0
Else
iCount = iCount + 1
End If
End Select
'Если есть хоть одно совпадение, то записываем всю инфу в файл "search.dat"
arrRecord(iCountLine) = sInfo
iCountLine = iCountLine + 1
If iCountLine = 8 Then
If bInform Then
iFileNum = FreeFile
Open Path & "search.dat" For Append As #iFileNum
For iCountLine = 0 To UBound(arrRecord)
Print #iFileNum, arrRecord(iCountLine)
Next
Close #iFileNum