Is there any command to close read only Doors modules and then close the doors application itself?
相关问题
- Error handling only works once
- Excel formula in VBA code
- Excel VBA run time error 450 from referencing a ra
- DoCmd.TransferSpreadsheet is not recognizing works
- VBA Self-Function returns #VALUE! Error on cell, w
相关文章
- Unregister a XLL in Excel (VBA)
- numeric up down control in vba
- Declare a Range relative to the Active Cell with V
- How to disable changes in a cell using vba?
- MsgBox Yes/No Excel VBA
- Rounding up to nearest higher integer in VBA
- Deleting columns from a table with merged cells
- Convert range to comma delimited string
Additionally, in case you have not already solved that part: https://www.ibm.com/developerworks/community/forums/html/topic?id=7a01e109-c6a2-443b-a3df-15f781b70c08 shows how to connect to an existing DOORS application.
Closing read only modules explicitely is not needed if you plan to exit DOORS, as the DOORS client will close all read only modules.
You should rather care about modules that have been opened in edit mode and where things have already been changed. Not sure if it wise, but if you want something like an auto-save-and-close, you would probably need this DXL script
This will not help you in all situations, e.g. if you have made changes to the current view, DOORS will ask you for a confirmation. For this, you might have to load the Standard view in all modules. More problems might occur.
Closing the application itself is accomplish with the command:
This will close your instance of DOORS. Use carefully- no DXL code after this call will be executed.