Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
CharlyAR #1
Distribute records list in many columns?
I have a recordset that gives me a list of about 20~30 records, and I want them in two columns of 10~15 records each.
Anybody could tell me how to do it? I've no ide... :(
Tnx!
CharlyAR Guest
-
Splitting a List control into columns
I have the following XML structure as data provider for List control: <?xml version="1.0" encoding="UTF-8"?> <europe> <areas> <area label="West... -
How to set no. of columns in list ?
Hi, I have a list in which I would like to set the number of columns to just more than two. Is this possible ? Earlier I downloaded an example... -
Selection of records in list
Dear folks: I was wondering how to query MySQL to display only a selection (1-20, 21-40) of a query in an HTML list. Can that be done in an SQL... -
Deleting records against a list
Let's say I have a database of 10,000 contacts. I send email out to them all and 200 of them bounce back. I collect those 200 bounces and parse... -
Wrapping list in multiple columns
Hello, I have long list of names that I would like to wrap across multiple columns (like a newspaper). Are there any suggestions on how to go... -
big_old_bird #2
Re: Distribute records list in many columns?
Hi
You could try something like this:
query for first list
select top 15 * from table
order by X
Query for second list
select top 15 * from table where X not in (select top 15 X from table)
order by X
I hope that makes sense! it did when I thought it lol!!!
Karen
big_old_bird Guest



Reply With Quote

