Initial commit – AufmaßCreater v2.35

This commit is contained in:
2026-06-10 11:03:43 +02:00
commit 84c933ea9c
2823 changed files with 490495 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <ListViewConstants.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
Opt("GUIResizeMode", $GUI_DOCKAUTO)
#Region ### START Koda GUI section ### Form=c:\users\flo\documents\isn autoit studio\projects\aufmasscreaterv2\forms\frm_ev_aufm.kxf
Global $frm_ev_aufm = GUICreate("E-Vergabe Aufmaß", 1349, 630, 472, 15)
Global $frm_lv_evaufm = GUICtrlCreateListView("RSA-Abschnitt|PosNr|Faktor|Länge|Breite|Tiefe|Menge|Einheit|Kurztext|Bemerkung|Menge|Einzelpreis|Summe", 8, 32, 1322, 550, BitOR($LVS_REPORT,$LVS_SHOWSELALWAYS), BitOR($WS_EX_CLIENTEDGE,$LVS_EX_GRIDLINES,$LVS_EX_FULLROWSELECT))
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 0, 50)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 1, 50)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 2, 50)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 3, 50)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 4, 50)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 5, 50)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 6, 50)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 7, 50)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 8, 50)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 9, 50)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 10, 50)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 11, 50)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 12, 50)
Global $Label1 = GUICtrlCreateLabel("LEBNr:", 8, 8, 38, 17)
Global $frm_evaufm_txt_lebnr = GUICtrlCreateInput("", 64, 8, 121, 21)
Global $frm_evaufm_bt_get_aufm = GUICtrlCreateButton("hole Aufm.", 192, 0, 75, 25)
Global $frm_evaufm_bt_mark_einf = GUICtrlCreateButton("mark. kopieren", 8, 592, 83, 25)
Global $frm_evaufm_bt_lv_loeschen = GUICtrlCreateButton("Liste löschen", 1256, 592, 75, 25)
Global $frm_evaufm_lbl_summe = GUICtrlCreateLabel("Summe: _________________€", 1176, 8, 153, 17)
Global $frm_evaufm_bt_export_excel = GUICtrlCreateButton("Export Excel", 104, 592, 75, 25)
Global $frm_evaufm_bt_lvAktu = GUICtrlCreateButton("Liste aktualisieren", 264, 592, 99, 25)
Global $frm_evaufm_bt_import_txt = GUICtrlCreateButton("import txt", 184, 592, 75, 25)
;~ GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###