Ehaviv
Computer
- Jul 2, 2003
- 1,012
Hi
Is it possible to Lock all options but one of this command ufs.Ui.SpecifyCsys
say I want that the user will be obligated to use only the option 4 = CSYS of Object
Thanks in advanced.
Is it possible to Lock all options but one of this command ufs.Ui.SpecifyCsys
say I want that the user will be obligated to use only the option 4 = CSYS of Object
Code:
theUI.LockAccess()
'if you don't care what option was used to specify the csys, simply pass in an integer
'that specified the default method to show to the user --- [b]4 = CSYS of Object[/b]
response = ufs.Ui.SpecifyCsys("Specify Desired Orientation", [b]4[/b], myCsys, myOrigin, newCsysTag)
theUI.UnlockAccess()
Thanks in advanced.