Tagged Questions

DXL is a scripting language for IBM Rational DOORS.

learn more… | top users | synonyms

4
votes
1answer
885 views

Are the dynamic arrays in DOORS data base worth using?

I am a new developer for a DOORS database and when writing scripts in dxl. If you know there are only 1 dimensional arrays in dxl. I wanted to use more than one dimension so I decided to use a ...
2
votes
2answers
215 views

Generating custom-form documents from base-form plus XML?

this is my first stack overflow, and it's a complex one. Sorry. My task is to generate custom documents from a basic template plus some XML without having a custom form design element for each case. ...
2
votes
1answer
132 views

Associate DXL with eclipse/notes and kick off handling

I need to be able to double click on a file on the desktop and have Eclipse (or more specifically Lotus Notes) kick off my custom action, to process and display it. I've found ...
2
votes
1answer
634 views

Remove Lotus Notes design element inheritance programatically

As part of an effort to create a rudimentary revision control system, I would like to programatically disable design element level inheritance on a Lotus Notes template. I have so far tried the ...
1
vote
3answers
333 views

An example of what Notes/Domino DXL cannot express?

Whenever source control in Lotus Notes development is discussed, it is said that an export-import cycle of DXL data doesn't give you the same design as you started with - thus any system relying on ...
0
votes
0answers
25 views

In your post to get inline images from richtext field you have said

There is another approach, and that's to export the database to DXL (Domino XML) using the export option ConvertNotesBitmapToGIF. The images will turn up in the XML as elements with the data ...
0
votes
1answer
122 views

Using Enumerations in DXL Scripts

I'd like to test the value of an enumeration attribute of a DOORs object. How can this be done? And where can I find a DXL documentation describing basic features like this? if (o."Progress" == 0) // ...
0
votes
2answers
150 views

how to check if file is opened in excel using OLE (leaves excel process open)

how may I check if a file is already opened in some Excel instance? I use DXL (DOORS) language but it should be independent from this language. Is there any OLE method that I can call to check which ...
0
votes
3answers
134 views

Searching through a document using DXL

A friend of mine with little experience in (Telelogic Doors) DXL was given a problem to search through a document for objects with possible matches of string. The problem was : We have 2 attributes: ...
0
votes
0answers
126 views

Lotus DXL to HTML Converter (ordered and unordered lists)

I am looking for a C# source code for Lotus Dxl to HTML Converter which can translate DXL "par" and "pardef" tags to HTML "ol" and "ul" tags properly, especially with correct translation of multi ...
0
votes
0answers
99 views

DXL exporter options - eOmitItemNames

Has anyone had any luck using the DXL exporter option eOmitItemNames? There doesn't seem to be any API sample that uses that option and the documentation is pretty sparse. A sample of how to use it ...
0
votes
2answers
2k views

String Split in DXL

I have sting Ex: "We prefer questions that can be answered; not just discussed " now i want to split this string from ";" like We prefer questions that can be answered and not just discussed is ...