Question Devexpress6.3 tabpage ordering

dipankarroy.mail

New member
Joined
Sep 23, 2009
Messages
4
Programming Experience
3-5
i already have some tabpages in tab control,
i want to reorder that but it not works


i am using this function

Private Sub SwapTab(ByVal tabCtrl As DevExpress.XtraTab.XtraTabControl, ByVal tabPage As DevExpress.XtraTab.XtraTabPage, ByVal CurrentPageIndex As Integer, ByVal MovetoIndex As Integer)
Dim tpto As DevExpress.XtraTab.XtraTabPage
tpto = tabCtrl.TabPages(MovetoIndex)
tabCtrl.TabPages.Move(CurrentPageIndex, tpto)
tabCtrl.TabPages.Move(MovetoIndex, tabPage)
End Sub


but it's not reorder the pages

please help me how to reorder the existing tabpages of a tabcontrol of devexpress 6.3
 
Have you asked DevExpress @ Support Center

I am using 8.3. But if i want to move a tab i can just drag the tab to the desired location at runtime. Is this something you need to control programatically?
 
You should be able to view the tab collection in the property grid and use the Move Up/Down arrows to order them. I'm using 9.x but it's pretty much the standard collections system.
 
Back
Top