![]() |
Telelogic DOORS (steve huntington) | ![]() |
new topic :
profile :
search :
help :
dashboard :
calendar :
home
|
||
Latest News:
|
|
Topic Title: getting sorting information Topic Summary: Created On: 10-Mar-2004 14:59 Status: Post and Reply |
Linear : Threading : Single : Branch |
![]() |
![]()
|
![]() |
|
Hi,
Does anybody know why this program doesn't work? It recognizes that there is a sorting but I can't get the string. I did the same with the filter information and it worked, but it doesn't work with sort. Sort s = current Sort string sortString = "" if (!null s){ sortString = stringOf(current Module, s) print sortString if (filtering current Module) print "yes" else print "no" } Regards, Hanna Bock |
|
![]() |
|
![]() |
|
Hi,
the stringOf(sort) function assumes the current Module, and does not take a module as a parameter. The following works. Sort s = current Sort string sortString = "" if (!null s){ sortString = stringOf( s) print sortString ------------------------- Tony Goodman http://www.smartdxl.com |
|
![]() |
|
![]() |
|
Yes, the v5 DXL manual appears to be incorrect.
Don't forget to set the current module (just in case) before using these commands that presume it: current = mod // or more efficiently: (current ModuleRef__) = mod sortString = stringOf(s) |
|
![]() |
|
![]() |
|
Thanks for your help.
Hanna |
|
![]() |
Telelogic DOORS
» DXL Exchange
»
getting sorting information
|
![]() |
FuseTalk Standard Edition v3.2 - © 1999-2009 FuseTalk Inc. All rights reserved.