$hFile = FileOpen(@ScriptDir & '\test.txt', 0)
If $hFile = -1 Then
MsgBox(4096, "Ошибка", "Невозможно открыть файл.")
Exit
EndIf
While 1
$sChars = FileRead($hFile, 1)
If @error = -1 Then ExitLoop
WEnd
$Form = GUICreate("Form", 290, 443, 378, 248)
$Combo = GUICtrlCreateCombo($sChars, 64, 48, 145, 25)
FileClose($hFile)