Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a multipage on a form with one particular page named "p13". Can I
select that page by its name "p13"? Excel 2003. -- | +-- Julian | |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
No you use the value property of the multipage.
Me.MultiPage1.Value = 0 'Page 1 -- Regards Ron de Bruin http://www.rondebruin.nl "Julian" wrote in message ... I have a multipage on a form with one particular page named "p13". Can I select that page by its name "p13"? Excel 2003. -- | +-- Julian | |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
But maybe you want this for a page named "ron" (Name not caption)
Me.MultiPage1.Value = Me.MultiPage1.Pages("ron").Index -- Regards Ron de Bruin http://www.rondebruin.nl "Ron de Bruin" wrote in message ... No you use the value property of the multipage. Me.MultiPage1.Value = 0 'Page 1 -- Regards Ron de Bruin http://www.rondebruin.nl "Julian" wrote in message ... I have a multipage on a form with one particular page named "p13". Can I select that page by its name "p13"? Excel 2003. -- | +-- Julian | |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You could use something like:
With Me.MultiPage1 .Value = .Pages("p13").Index End With You did mean the name, not the caption, right? Julian wrote: I have a multipage on a form with one particular page named "p13". Can I select that page by its name "p13"? Excel 2003. -- | +-- Julian | -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dave & Ron,
That's exactly what I was after, a bit long winded but useful. FYI, I thought that if you could do: Range("MyNamedRange").Select Then it seems strange that you can't do the same with Multipages. LoL -- | +-- JDMils | "Dave Peterson" wrote in message ... You could use something like: With Me.MultiPage1 .Value = .Pages("p13").Index End With You did mean the name, not the caption, right? Julian wrote: I have a multipage on a form with one particular page named "p13". Can I select that page by its name "p13"? Excel 2003. -- | +-- Julian | -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
MultiPage tab? | Excel Discussion (Misc queries) | |||
How do I use multipage | Excel Discussion (Misc queries) | |||
Userform, multipage, select a tab | Excel Programming | |||
Multipage | Excel Programming | |||
MultiPage | Excel Programming |