I don't get the intellisense either for the enabled property.
This should work, I have done similar things in Excel with no real problems
Having no real Idea of your experience with VBA, I'll try to start from the simple things and work upwards, Please do not take offence...
What is the syntax that you are using. Are you using a variable to hold the page name or page number, i.e.
multipage1.pages(strPagename).enabled
or are you referencing it directly:
multipage1.pages("Page2"

.enabled
or multipage1.pages(2).enabled
can you read any properties? try pausing the code (put a breakpoint somewhere), then in the 'immediate' window type:
debug.print multipage1.pages(0).name
What is the output?
Where is the command button? is it in the multipage (i would assume it is, but I had better ask), or is it outside the control?
If it is in the multipage control, how are you trapping the click event of the button? - I ask because I have just set up something similar and I can't trap the event to test.
Can you enable or disable any of the pages, or is it just failing when you are doing it from the 'next' command button?
Are you disabling the page that the command button sits on ?
I must admit that
1)I
hate VBA'ing in Word
2)I
hate using the multipage control in VBA
they are both the devils spawn and man is not meant to wot of such things.
SteveO