Karsten Lehmann

Results 25 comments of Karsten Lehmann

Yes, that’s the idea, to have a web application that is synced onto the device/desktop browser and can run offline. When online, app data and HTML/JS is synced with the...

Looks ok. Which error do you get and which OS are you using?

Thanks for the info. Looks like the Notes Client does not have modified dates of a database if it's not already open. That method uses NSFDbModifiedTimeByName internally. Somehow this rings...

Sorry about that, had some issues uploading to Maven Central and missed that one. Please retry. domino-jna-base is now available: https://repo1.maven.org/maven2/com/mindoo/domino/domino-jna-base/

Here is an example for a standalone application using Domino JNA: https://github.com/klehmann/domino-jna/tree/develop/workspace-demo

I used this pom.xml in my test. Not sure why the dependencies need to be added here. They are already part of the domino-jna pom.xml in Maven Central. ```xml 4.0.0...

I just added NotesDatabase.getForms(): 37778797bfee9facb6a6785d317711ed7b805b81 20e62309817e4723b86dfd9d2ee39caa8bb0cf12 Next I will take a look at subform usage. Should be possible by traversing the design richtext ($body item).

And here are the methods to read subform names and formulas: 80cc4d4e7f94b7612c482cc9ecf9c26440311096

Here is a snippet: ```java NotesDatabase db = new NotesDatabase("", "mydatabase.nsf", ""); NotesForm form = db.getForm("MyFormWithSubform"); //read the design richtext IRichTextNavigator rtNav = form.getNote().getRichtextNavigator("$Body"); //returns pairs of dbreplicaid/subformname that are...

I think I finally fixed this one: https://github.com/klehmann/domino-jna/commit/117af3f1b6c94bdceb1555c060d0f3830930f515 Please try with 0.9.42 when it is available.