mahaveer
Member
i have a userform with multipage1. On multipage1 there are 3 pages.
1 page = Creation
2 page = Suppliers (visible = false)
3 page = Inventory (visible = false)
on 1 page i have two command button.
1 command button = Add suppliers
2 command button = Add Inventory
the command on 1st command button is following:
Multipage1("page2").visible = true
Multipage1("Page2").enabled = true
Multipage1("Page3").visible = false
the command on 2nd command button is following:
Multipage1("page3").visible = true
Multipage1("Page3").enabled = true
Multipage1("Page2").visible = false
my Problem:
when my userform initialize then "creation" page automatically open only
now when i press the 1st command button i.e. add supplier then 2nd page "Suppliers" is visible but "supplier" page not open automatically still i m on creation page only why? is there any way to open the 2nd page from 1st command button on page1.
1 page = Creation
2 page = Suppliers (visible = false)
3 page = Inventory (visible = false)
on 1 page i have two command button.
1 command button = Add suppliers
2 command button = Add Inventory
the command on 1st command button is following:
Multipage1("page2").visible = true
Multipage1("Page2").enabled = true
Multipage1("Page3").visible = false
the command on 2nd command button is following:
Multipage1("page3").visible = true
Multipage1("Page3").enabled = true
Multipage1("Page2").visible = false
my Problem:
when my userform initialize then "creation" page automatically open only
now when i press the 1st command button i.e. add supplier then 2nd page "Suppliers" is visible but "supplier" page not open automatically still i m on creation page only why? is there any way to open the 2nd page from 1st command button on page1.