Es gibt endlich wieder ein HCL Domino Meetup in #Dresden , es geht um Software ohne Cloud, Office-Alternativen und Sovereign IT die man selbst günstig betreiben kann. Microsoft zu teuer? Cloudzwang ein Problem?

Interesse? Anmeldung und Details hier:
https://planetlotus.org/1056030

#dominoforever #HCLNotes #HCLDomino #LotusDomino

Thomas Hampel

HCL Domino Community Meeting Dresden - 27. Feb. 2026

#HCLNotes Kalender Benachrichtigungen kommen nicht durch wenn man eine Windows "Focus Session" macht, also auf "Do not disturb" schaltet. Danke HCL für diesen Service, geplante Meetings die ich angenommen haben sollten mich bei meiner Arbeit nicht stören. 🤦‍♂️
#HCLNotes, burn it with fire! 🔥
#HCLNotes ist ein #Dreckstool, schreibe E-Mail, klicke auf Senden, die Kacke stürzt ab, startet neu, fragt ob recovern, ich klicke ja, mail erscheint, ich schaue drüber sende nochmal. 2 Minuten später sehe ich das die Drecksmail jetzt 2 mal rausging an den Kunden.

Ihr glaubt gar nicht, ich freue mich wirklich, dass wir auf O365 wechseln, noch lieber wäre mir was selber gehostetes, aber die Muttergesellschaft gibt vor was wir nutzen. 🤷‍♂️
Ich hasse #HCLNotes so sehr, dass ich sogar froh bin zu #Microsoft365 zu wechseln.

HCL Notes not launching after Windows 11 24H2 update KB5055523? Versions 11.x, 12.x, and 14.x affected. Fix it with compatibility mode or uninstall the update. Details here: #HCLNotes #Windows11

https://pupuweb.com/why-is-hcl-notes-failing-to-launch-after-windows-11-24h2-update-kb5055523-discover-the-frustrating-issue-and-solutions/

Why Is HCL Notes Failing to Launch After Windows 11 24H2 Update KB5055523? Discover the Frustrating Issue and Solutions! - PUPUWEB

Is Your HCL Notes Broken After Windows 11 24H2 Update KB5055523? Powerful Fixes for This Annoying Problem! A recent Windows 11 24H2 cumulative update

PUPUWEB
Thomas Hampel

Available now: HCL Notes/Domino 14.0 Fix Pack 1

From the totally-unsupported-department:

To run #HCLNotes on #Windows11 for #ARM64 (e.g. in a macVM) You need the Visual C++ redistributables for Arm, found here: https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170 #dominoforever

Latest supported Visual C++ Redistributable downloads

This article lists the download links for the latest versions of Visual C++ Redistributable packages.

DoS- und Schadcode-Attacken gegen Groupware HCL Notes möglich
DoS- und Schadcode-Attacken gegen Groupware HCL Notes möglich
DoS- und Schadcode-Attacken gegen Groupware HCL Notes möglich

Sicherheitsupdates schließen Lücken in HCL Notes und iNotes.

Not just in spreadsheets either! We had fun when we were writing Lotus Notes document database applications and discovered that evaling big vectors in Lotus formula language instead of looping over them in LotusScript actually improved performance. And noticeably so.

If you had for some reason a long list of numbers you wanted to multiply, pair by pair, with some equally long list of numbers, you could:

Set doc = db.CreateDocument() doc.LeftList = leftArray doc.RightList = rightArray multipliedArray = Evaluate({LeftList * RightList}, doc)

Much faster than looping over them in LotusScript!

{} is LotusScript's neat string literal syntax that makes it easy for you to put the quotes you need inside your strings, so it's what you'd generally use for string literals when writing formulas. I don't know if normal Visual Basic had that syntax, otherwise LotusScript was pretty much Visual Basic.

There were also several @functions that were faster than their LotusScript analogues, because the LS methods would just pull in too much data and populate a lot of objects:

www.ibm.com/developerworks/lot…

#LotusScript #LotusNotes #LotusDomino

Now #HCLNotes and #HCLDomino I hear. Don't know if they still have LotusScript in v11, or if it's all Java these days. Java became available in v4.6 already, 22 years ago or so. It was faster than LotusScript for many things, and by Lotus Notes 5.0 there were even some things you could only do in Java, but the tooling was still awkward at the time compared to the actually very good LotusScript/Notes integration, so we mostly stayed in LotusScript.
Simplifying your LotusScript with the Evaluate statement

This article will show you how the Evaluate statement works and give you examples of some of the more powerful formula language constructs you can exploit from your LotusScript routines.