Die Artikel dieser Kategorie werden über die Tags zugänglich gemacht.
Dim gPID Function BPM_OnCreate(DCRoot) gPID = InputBox("Welche Prozess-ID?", "Frage", "XX") End Function Function BPM_OnProcessBatch(DCBatch) 'eine ID setzen iDocCount = DCBatch.GetDocumentCount For i = 0 To iDocCount - 1 Set DCTempDocument…
Dim g_DirToHoldFiles Function DPM_OnCreate(DCRoot) g_DirToHoldFiles = "E:\temp\referenz" End Function Function DPM_OnProcessDocument(DCDocument) SaveTifAndAddx(DCDocument) End Function Function SaveTifAndAddx(DCDocument) 'FileSystem-Objekt öffnen set fso = CreateObject("Scripting.FileSystemObject") 'Verzeichnis If not fso.FolderExists(g_DirToHoldFiles) Then f = fso.CreateFolder(g_DirToHoldFiles)…
Function DPM_OnOpenBatch(DCBatch) nDocument = DCBatch.GetDocumentCount For i = 0 To nDocument - 1 Set DCDoc = DCBatch.GetDocument(i) nAttribute = DCDoc.GetAttributecount For a = 0 To nAttribute - 1 Attribute =…
Single-Responsibility-Prinzip eine Klasse nur eine Verantwortlichkeit; viele kleine Klassen sind besser als wenige große Open-Closed-Prinzip offen für Erweiterungen, aber geschlossen gegenüber Modifikationen; über Vererbung und Einsatz von Interfaces zu erreichen…
in Ereignisanzeige über Kontextmenü bei folgenden Knoten "Protokoll aktivieren" Anwendungs- und Dienstprotokolle/Microsoft/Windows/CAPI2/Betriebsbereit
.boxes:hover > :not(:hover) { opacity: 0.2; }
d:\gs\gs9.50\bin\gswin64.exe \ -sDEVICE=pdfwrite \ -dPDFSETTINGS=/printer \ -dEPSCrop \ -o test.pdf \ "mal sehen.eps"
Json-Formatierung im Vim auslösen... :%!jq . Regex "abc" suchen und Befehl "d" ausführen... :g/abc/d Zeile 1 bis Ende nach "abc" durchsuchen und mit "def" ersetzen... :1,$s/abc/def/g