Hello all,
I'm attempting to turn level overrides "on" in the view attributes in V8i and then save the settings using a piece of VBA code. I know there is a setting to save settings upon exit, but would like to save them via the code. Any assistance would be greatly appreciated.
Best Regards,
Adam O.
To save settings, you can use vb to send the keyin 'filedesign'.
Thanks Bear!
Is there a keyin to turn the Level Overrides "ON"? I've tried passing the following keyin but I must have the wrong one: .SendKeyin "set refleveloverrides on; selview 1; update 1".
Please clue this rookie in!
Thanks,
Try this line,
view1.DisplaysLevelSymbology = True
Matt
I did not add this first prior to posting, sorry
Set view1 = ActiveDesignFile.Views(1)
view1.DisplaysLevelSymbology = True (False)
Beautiful Matt...Thank you!!!