Listview Control with Check Boxes

laksiri

New Member
Joined
Dec 4, 2010
Messages
2
Hi Everyone,

I've added a Listview control with check boxes on the second page of my Multipage. Everything works fine except disappearing. When selecting among pages. This is on a Excel user form. Not sure what is going on.

My environment is:
Win XP with SP3
3Office 2007 with SP2

Any idea?

Laksiri
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Code:
[/FONT]
[FONT=Courier New]Everything works fine except disappearing[/FONT]
[FONT=Courier New]
Not sure whar you mean but are you wanting page2 be greyed out when you're page1 and enable page2 only when certain information are met?:confused:
 
Upvote 0
Pedie,

It's like this. User can interact with both pages(tabs in multipage). this is happening while moving among those two.

Laksiri
 
Upvote 0
I still am not sure what you're trying to do...:)
try this link...

just an idea...
courtesy Dan (Halface)mrexcel.
Code:
[/FONT]
[FONT=Courier New]Private Sub CommandButton1_Click()
    Select Case MultiPage1.Value
        Case 1                           
            With MultiPage1
                .Pages(0).Enabled = True   
                .Value = MultiPage1.Value - 1  
                .Pages(1).Enabled = False    
            End With
            
        Case 2                               
            With MultiPage1
                .Pages(1).Enabled = True     
                .Value = MultiPage1.Value - 1  
                .Pages(2).Enabled = False    
            End With
    End Select
End Sub[/FONT]
[FONT=Courier New]
 
Upvote 0

Forum statistics

Threads
1,214,566
Messages
6,120,257
Members
448,952
Latest member
kjurney

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top