Тема: AHK V2: Edit. Добавляем строки и скролим вниз
Идея взята с www.autohotkey.com и переделана под AHK V2. Спасибо just me
MyGui := Gui()
MyEdit := MyGui.Add("Edit", "r9 w300", )
MyGui.Show
NewlineEdit := "`r`n"
GuiEditAppend(MyEdit, "Start:")
Loop 20
{
GuiEditAppend(MyEdit, NewlineEdit . A_Index)
Sleep 500
}
GuiEditAppend(hEdit, Append) {
; Calculate required size and allocate a buffer.
buf := Buffer(StrPut(Append))
; Copy or convert the string.
StrPut(Append, buf)
SendMessage 0x00C2, False, buf.Ptr, hEdit
}