Option Explicit
Dim Qtext(100) 'Полные строки
Dim Vopros(100) 'вопросы
Dim Otvet(100) 'ответы :)
Dim TempArr(3)
Dim schet
Dim scet2
Private Sub Command1_Click()
If Text1.Text = Otvet(schet2) Then MsgBox "Правильно!"
schet2 = scet2 + 1
Call Print_vopros
End Sub
Private Sub Form_Load()
Open "test.txt" For Input Shared As #1
Do While Not EOF(1)
Line Input #1, Qtext(schet)
TempArr = Split(Qtext(schet), "|")
Vopros(schet) = TempArr(0)
Otvet(schet) = TempArr(1)
schet = schet + 1
Loop
Close #1
Call Print_vopros
End Sub
Private Sub Print_vopros()
Label1.Caption = Vopros(schet2)
Text1.Text = ""
End Sub
Сейчас этот форум просматривают: AhrefsBot, Yandex-бот и гости: 39