andreitrane
Новичок
- Сообщения
- 141
- Репутация
- 3
как сделать отправление текста на mail
вот примерная форма
вот примерная форма
Код:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 242, 255, 214, 158)
$Input1 = GUICtrlCreateInput("mail", 8, 16, 105, 21)
$Button1 = GUICtrlCreateButton("начать", 128, 8, 105, 25)
$text = GUICtrlCreateEdit("", 8, 40, 225, 201)
GUICtrlSetData(-1, "text")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $button1
EndSwitch
WEnd