- Код: Выделить всё
Dim ar(100) As Byte
Dim arv(100) As Byte
Open "C:\1.exe" For Binary As #1
Seek #1, 100
Get #1, , ar
Close #1
Open "C:\2.exe" For Binary As #1
Seek #1, 100
Get #1, , arv
Close #1
Надо узнать, одинкавы ли масивы или нет...
Так не получается
- Код: Выделить всё
If ar = arv Then
MsgBox "True"
Else
MsgBox "False"
End If