Isolate View with VB Script
Isolate View with VB Script
(OP)
I've been all through the API's but I can't find a way to isolate a view through VB Script.
Has anyone found a work around for this?
Recording a macro of isolating a view produce squat since it is a contextual operation.
TIA,
Puck
Has anyone found a work around for this?
Recording a macro of isolating a view produce squat since it is a contextual operation.
TIA,
Puck





RE: Isolate View with VB Script
You can isolate view, for example last view:
Set DrwView = DrwViews.Item(DrwViews.Count)
DrwView.Isolate
Regards TPale
RE: Isolate View with VB Script
RE: Isolate View with VB Script
Thanks