PDA

View Full Version : How do you change the active Layout tab?


des_ou
22-10-2004, 02:34 PM
I need to write text to two separate pages. I can write text to the first page, but I cannot write to the second page because I cannot change the active layout tab. Its probably really simple. Thanks for any help.

Dave

hendie
22-10-2004, 03:42 PM
have you tried

dim NewLO as string
NewLo = "MyLayOut"

ThisDrawing.ActiveLayout = ThisDrawing.Layouts(NewLO)

des_ou
22-10-2004, 04:06 PM
Thanks a lot.