In diesem Beispiel wird eine Excel-Tabelle erstellt, die Überschriften gesetzt und von einem Notes-Dokument die Felder als Spalte in die Excel-Tabelle übertragen.
Dim xlApp As Variant
Dim xlSheet As Variant
Dim doc as notesdocument
set doc = "Hier wird das Notes-Dokument gesetzt!"
Set xlApp = CreateObject("Excel.Application")
xlApp.Visible = True
xlApp.Workbooks.Add
xlApp.ReferenceStyle = 2
xlApp.StatusBar = "Hier kommt deine Statusmeldung !"
Set xlSheet = xlApp.Workbooks(1).Worksheets(1)
' Titelzeile
xlSheet.Cells(1,1) = "Überschrift Spalte 1"
xlSheet.Cells(1,2) = "Überschrift Spalte 2"
xlSheet.Cells(1,3) = "Überschrift Spalte 3"
xlSheet.Cells(1,4) = "Überschrift Spalte 4"
' 2. Zeile
xlSheet.Cells(2,1) = doc.GetItemValue("DeinFeld1")(0)
xlSheet.Cells(2,2) = doc.GetItemValue("DeinFeld2")(0)
xlSheet.Cells(2,3) = doc.GetItemValue("DeinFeld3")(0)
xlSheet.Cells(2,4) = doc.GetItemValue("DeinFeld4")(0)
xlApp.StatusBar = "Formatiere Zellen !"
xlApp.Range(xlSheet.Cells(4,1), xlSheet.Cells(row,15)).Select
xlApp.Selection.Columns.AutoFit
xlApp.Range("A1").Select
xlApp.StatusBar = "Fertig !"
Neueste Kommentare
admin_toolbar 3.5.2 is the…
admin_toolbar 3.5.2 is the reason. Patch coming ...
Tools & Settings >> Security…
Tools & Settings >> Security Policy :
Allow only secure FTPS connections
List config vaiables
/usr/sbin/mariadbd --help --verbose | grep "query.*size"
Restart MariaDB / MySQL
Commandline:
MariaDB Restart (after changes in /etc/mysql/db-performance.cnf)
After my changes in /etc/mysql/db-performance.cnf
Error: configure: error: no acceptable C compiler found in $PATH
Error:
PHP 8.3, APCu via PECL
PHP 8.3 extra packages (+ pecl, apcu)
apt update && apt upgrade
https : Secure Connection Failed
I get this error, when I visit https://solr.example.com:8983 :
Remove files and show the number of deleted files
Remove all files starting with 2024 in mydir123 and show the number of deleted files:
find mydir123 -name '2024*' -exec rm -vf {} \; | wc -l
find . -name '*' | xargs rm …
find . -name '*' | xargs rm -v