Questions tagged [domino-designer-eclipse]

IBM Domino Designer - a high-performance application development environment that runs on platforms IBM Notes and IBM Domino.

IBM Domino Designer - a high-performance application development environment that runs on platforms IBM Notes and IBM Domino. It's used for Rapid Application Development (RAD) and business cooperation on the basis of worker threads. Developers can integrate the resources of many IT systems and provide access to applications through a variety of clients and devices.

Features:

  • Helps to create efficient applications by integrating technology XPages, element design, which greatly enhances the ability to create web applications.
  • The program is built on the Eclipse Integrated Development Environment (IDE), an open and extensible environment that provides high-performance, integrated interface for many business applications.
  • Provides powerful tools for developers to build business-critical applications, including Customer Relationship Management (CRM), Help Desk/Customer Support System, creating invoices, tracking supply chain and project management.

It can be downloaded for free from IBM developerWorks.

273 questions
1
vote
1 answer

Notes/Domino : C API Applications

I'd like to build a small Domino addin DLL by Notes C APIs. However it looks like no ND 10/11 C API toolkits are available. So, my questions is... When I build a DLL in ND9 env, the dll also works fine in ND 10/11?
1
vote
1 answer

Import org.openntf cannot be resolved

I have a Notes V11.0.1 designer client and configured a widget that imports the latest OpenNTF Domino API (downloaded from OpenNTF website) through an update site. The plug-in is loaded in the designer I created a new application and added the…
Tom Van Aken
  • 435
  • 2
  • 16
1
vote
1 answer

Notes/Domino : Can I specify a default view when opening Notes DB by NOMAD?

I know I can specify the default view/frameset/navigator/etc in DB property setting when opening Notes DB by NotesClient or Web browser. I'd like to specify a default view when opening DB by NOMAD. How can I do it?
1
vote
1 answer

Unable to archive documents to Archive DB in lotus notes

There is a agent to Archive documents to archive database with removing them from the current database, But when I run the agent some documents get archived and the archiving stops and getting error as "Archiving Pending Requests:4000:Line…
1
vote
1 answer

How to install a feature in lotus notes client developed in domino designer existing application?

I have created a button and Script Library file on my individual lotus notes client with domino designer now I want to install that feature in an organization as a plug-in or new feature that every lotus notes client can use it. So there are two…
1
vote
1 answer

How to remove document after moving from inbox in lotus script?

I am moving a document from inbox to a custom folder it moves successfully but it still appearing in inbox. I want to remove it from inbox. I tried doc.RemoveFromFolder("Inbox") after moving but it does't work for me . Here is my code : Sub…
1
vote
2 answers

How to access current logged in user email address in lotus script?

I am looking to find the email address of the current notes client user who is logged in programmatically. Is there a way to do it ? I am accessing username with session but I need email address Thanks in advance.
1
vote
1 answer

How to fix it class not found exception in domino designer?

here is my code when I trigger it it shows an error Dim jSession As New JavaSession Dim jClass As JavaClass Dim jObject As JavaObject Set jClass = jSession.Getclass("learn/MyClass") Set jObject = jClass.CreateObject Call jObject.myMethod() The…
1
vote
2 answers

Why Document properties body value is null in lotus notes?

Body content is null in document properties showing this sign ""[] instead of content. Also messsage box lotus script is showing null with getItemValue("Body"). How to resolve this ? Sub Click(Source As Button) Dim s As NotesSession Dim db…
1
vote
1 answer

OSGI plugin development with Domino Designer 10

Up to date I was using IBM Domino Designer V9.0.1 FP8 to develop an OSGI plugin. With this version everything was working as intended. I've created a plugin project, a feature project and an update site project. Selecting "Build all" in the update…
Detlef Birkholz
  • 441
  • 2
  • 11
1
vote
1 answer

How to fix drop-down responses document in lotus notes

Basically, I'm using version tracking to list down all edited document. When I see on notes, it's not created as a drop down and it just shows all record. For example like this website. Provide by @umeli. But I can't seem to get it inside my lotus…
Reinhaa
  • 195
  • 1
  • 17
1
vote
1 answer

IBM Designer client launching Forms & Views into Notes Client! CLFRJ0010E sometimes

Hi XPages app developers. Some weird stuff happening between the Notes Client and the Designer Client: I launch Notes then right-click an app and tell it to Open in Designer. I wait for it to load, it does, but funny, it says "IBM Notes in the…
Leon Matthys
  • 57
  • 11
1
vote
1 answer

Writing IBM Domino applications in IntelliJ

I have a question to people who are writing programs in Domino Designer. I don't like it, really and I'm searching how to write apps for that platform in Intellij? Does somebody have experience in moving project from DDE to IntelliJ? I wan't to do…
Gnex
  • 71
  • 2
  • 9
1
vote
2 answers

XPages are rebuilt automatically when opening designer

I have a customer who likes to do some basic stuff in Domino Designer in a specific database. He only works with Forms, agents etc and never do any Xpages stuff. I have done all the xpages stuff in the Database. This morning when I opened designer I…
Thomas Adrian
  • 3,543
  • 6
  • 32
  • 62
1
vote
2 answers

Import a Java library and calling its classes through Lotus Script and SSJS

There is a library in the language of java, it needs to be called both with Lotus Script and SSJS. The script of the library runs without problems through Lotus Script, but there is no possibility of calling it on SSJS. Java library: public class…