bulldog5293
Знающий
- Сообщения
- 172
- Репутация
- 10
Приветствую! Помогите разобраться с примером
Чтоб в list попадала строка $sText = 'abcdefghijklmnopqrstuvwxyz' , как самаму зделать не поёму :IL_AutoIt_1:
Код:
#include <WinAPI.au3>
#include <GUIConstants.au3>
Global $sFile, $hFile, $sText, $nBytes, $tBuffer
GUICreate("My GUI") ; will create a dialog box that when displayed is centered
GUICtrlCreateListView ("", 1, 1, 399, 399)
GUISetState (@SW_SHOW) ; will display an empty dialog box
; 1) create file and write data to it
$sFile = @ScriptDir & '\test.txt'
$sText = 'abcdefghijklmnopqrstuvwxyz'
$tBuffer = DllStructCreate("byte[" & StringLen($sText) & "]")
DllStructSetData($tBuffer, 1, $sText)
$hFile = _WinAPI_CreateFile($sFile, 1)
_WinAPI_WriteFile($hFile, DllStructGetPtr($tBuffer), StringLen($sText), $nBytes)
_WinAPI_CloseHandle($hFile)
ConsoleWrite('1) ' & FileRead($sFile) & @CRLF)
FileDelete($sfile)
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend
Чтоб в list попадала строка $sText = 'abcdefghijklmnopqrstuvwxyz' , как самаму зделать не поёму :IL_AutoIt_1: