22 lines
1.1 KiB
AutoIt
22 lines
1.1 KiB
AutoIt
;GUI_PosFensterBIG_BIG.au3
|
|
|
|
#include <EditConstants.au3>
|
|
#include <GUIConstantsEx.au3>
|
|
#include <WindowsConstants.au3>
|
|
Opt("GUIResizeMode", $GUI_DOCKAUTO)
|
|
Opt("GUIResizeMode", $GUI_DOCKAUTO)
|
|
#Region ### START Koda GUI section ### Form=C:\Users\Flo\Documents\ISN AutoIt Studio\Projects\AufmassCreaterV2\Forms\frm_PosBig.kxf
|
|
Global $frm_PosBig = GUICreate("Positionsfenster", 660, 781, 841, 90)
|
|
Global $frm_posfenst_ltext = GUICtrlCreateEdit("", 8, 48, 633, 689)
|
|
GUICtrlSetData(-1, "")
|
|
GUICtrlSetFont(-1, 8, 800, 0, "Arial")
|
|
Global $frm_posfenst_posnr = GUICtrlCreateInput("", 8, 16, 185, 22)
|
|
GUICtrlSetFont(-1, 8, 800, 0, "Arial")
|
|
Global $frm_posfenst_ltex = GUICtrlCreateInput("", 216, 16, 425, 22)
|
|
GUICtrlSetFont(-1, 8, 800, 0, "Arial")
|
|
Global $frm_PosBig_bt_save = GUICtrlCreateButton("Save", 8, 744, 75, 25)
|
|
Global $frm_PosBig_bt_c_posnr = GUICtrlCreateButton("copy PosNr", 128, 744, 75, 25)
|
|
Global $frm_PosBig_bt_c_kurztext = GUICtrlCreateButton("copy Kurztext", 216, 744, 75, 25)
|
|
Global $frm_PosBig_bt_c_langtext = GUICtrlCreateButton("copy Langtext", 304, 744, 83, 25)
|
|
;~ GUISetState(@SW_SHOW)
|
|
#EndRegion ### END Koda GUI section ### |