Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to split the categories with subcats into pages(urgent please)

Status
Not open for further replies.

menu

Technical User
Apr 25, 2001
24
AE
Hi,

I need help with splitting of a two dimensional array containing categories in first dim and subcats in second into pages displaying only 10 subcats per page.That is, it should display as

category1(if they are 4 subcats in this category)
1 2 3 4
category2(if they are 7 subcats in this category)
1 2 3 4 5 6 7
category3(if they are 5 subcats in this category)
1 2 3 4 5
then i need to display the 4 of first category and 6 of second on the first page and when next is clicked the remaining should be displayed.

Thankx in advance,
Jane.
 
Use the ArraytoList function, then you can simply loop through the list

variable = ArrayToList(array [, delimiter ])
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top