Thanks, Yes, he gave to me but I'm new so I get little slow...:) And i
got
confuse about this "copyfrom"...... I was thinking that statement
something
like this activeplotfiguration = "test". anyway againg thanks for your
help.
John
"Ed Jobe" <not.edljobe@hotmail.com> wrote in message
news:41bf57fd$1_3@newsprd01...
He gave that to you. :-) Some code might make it clearer.
If ThisDrawing.PlotConfigurations("SomePageSetup") Then
ThisDrawing.ActiveLayout.CopyFrom ThisDrawing.PlotConfigurations
"SomePageSetup"
End If
--
----
Ed
----
"John" <hendnoemail@aol.com> wrote in message
news:41bf54e6_1@newsprd01...
Thank you for your reply
what i really looking is, for example if you have few plotconfiguratios
in
this drawing and like to make one of them active....
"TomD" <tdivittis.no@spam.cecinc.com> wrote in message
news:41bf4f28$1_1@newsprd01...
SNIPPED
I know I can use WITH statement to replace all newpage1. My
question
is
how
to make plotconfigurations (name "test") active and assign with
layouts?
I'm trying to do this but with name
If PlotConfigurations.count = 0 Then
'*** Customize the new configuration to your satisfaction
***
PlotConfigurations.Add "NEW_CONFIGURATION"
End If
Can i go by plotconfigurations name like this
If PlotConfigurations.count = "test" Then
'*** Customize the new configuration to your satisfaction
***
PlotConfigurations.Add "NEW_CONFIGURATION"
End If
If I remember correctly, you have to use the CopyFrom method of the
layout
to apply a PlotConfiguration's settings.
....that's how I've been doing it, anyway. (It seemed
counterintuitive,
at
first.....at least to me.)