Hallo ich habe eine frage,
ich möchte ein Formular erstellen und das soll sich dann als label ausdrucken lassen in der Größe 29mm x 90mm.
Geht das oder wie stelle ich das an.
MfG
Roberto
C
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=C:\Users\nikolaj\Downloads\koda_1.7.3.0\Forms\lafa.kxf
$lafa = GUICreate("lafa", 615, 437, 447, 227)
GUICtrlCreateInput("", 16, 48, 121, 21)
$lafalabel = GUICtrlCreateInput("", 152, 48, 305, 21)
GUICtrlCreateInput("", 472, 48, 121, 21)
$artikelnr = GUICtrlCreateLabel("Artikelnummer", 16, 24, 70, 17)
$bezeichnung = GUICtrlCreateLabel("Artikel Bezeichnung", 152, 24, 98, 17)
$preis = GUICtrlCreateLabel("Preis", 472, 24, 27, 17)
$Drucken = GUICtrlCreateButton("Drucken", 16, 88, 75, 25)
$Speichern = GUICtrlCreateButton("Speichern", 104, 88, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $lafalabel
EndSwitch
WEnd
Alles anzeigen