473,395 Members | 1,622 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

listbox table issue

I would appreciate a pointer.....

I have an asp page that links to an Access database and retrieves 2500
records and each record line has two listboxes. The problem is, although
everything is fine when a few hundred records are retrieved, when the full
2500 are the listboxes do not position themselves within the table cell and
even extend beyond the table at the bottom of the page. Any ideas?

The server in NT4 running IIS4 and the browser used is IE6.
Jul 19 '05 #1
8 1420
Does a user really need to see 5000 listboxes on one page? Why not make
them choose some way to filter it down so they never have to see 2500
records at once? That page would be completely unusable, IMHO.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"buzz" <bu****@freeuk.com> wrote in message
news:40***********************@news.dial.pipex.com ...
I would appreciate a pointer.....

I have an asp page that links to an Access database and retrieves 2500
records and each record line has two listboxes. The problem is, although
everything is fine when a few hundred records are retrieved, when the full
2500 are the listboxes do not position themselves within the table cell and even extend beyond the table at the bottom of the page. Any ideas?

The server in NT4 running IIS4 and the browser used is IE6.

Jul 19 '05 #2
Aaron

Each line is a pallet of stock and one listbox contains what to do with it
and the second is a reasoncode. The user gooes through his/her stock
indicating stock that needs to be displosed of and the entire page is then
updated to reflect these changes.

This is the extreme of the records available and there are filters to reduce
the number of records but this option will still be required.

many thanks

buzz

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Does a user really need to see 5000 listboxes on one page? Why not make
them choose some way to filter it down so they never have to see 2500
records at once? That page would be completely unusable, IMHO.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"buzz" <bu****@freeuk.com> wrote in message
news:40***********************@news.dial.pipex.com ...
I would appreciate a pointer.....

I have an asp page that links to an Access database and retrieves 2500
records and each record line has two listboxes. The problem is, although everything is fine when a few hundred records are retrieved, when the full 2500 are the listboxes do not position themselves within the table cell

and
even extend beyond the table at the bottom of the page. Any ideas?

The server in NT4 running IIS4 and the browser used is IE6.


Jul 19 '05 #3
Well, usability aside, as for the client-side display issue (extending
beyond the table), it's not really an ASP issue. If you can reproduce the
problem at a URL, post it to a client-side HTML group and ask, "what's up?"

--
http://www.aspfaq.com/
(Reverse address to reply.)


"buzz" <bu****@freeuk.com> wrote in message
news:40***********************@news.dial.pipex.com ...
Aaron

Each line is a pallet of stock and one listbox contains what to do with it
and the second is a reasoncode. The user gooes through his/her stock
indicating stock that needs to be displosed of and the entire page is then
updated to reflect these changes.

This is the extreme of the records available and there are filters to reduce the number of records but this option will still be required.

many thanks

buzz

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Does a user really need to see 5000 listboxes on one page? Why not make
them choose some way to filter it down so they never have to see 2500
records at once? That page would be completely unusable, IMHO.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"buzz" <bu****@freeuk.com> wrote in message
news:40***********************@news.dial.pipex.com ...
I would appreciate a pointer.....

I have an asp page that links to an Access database and retrieves 2500
records and each record line has two listboxes. The problem is, although everything is fine when a few hundred records are retrieved, when the full 2500 are the listboxes do not position themselves within the table
cell and
even extend beyond the table at the bottom of the page. Any ideas?

The server in NT4 running IIS4 and the browser used is IE6.



Jul 19 '05 #4
OK

Thanks anyway
"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:eq**************@TK2MSFTNGP11.phx.gbl...
Well, usability aside, as for the client-side display issue (extending
beyond the table), it's not really an ASP issue. If you can reproduce the
problem at a URL, post it to a client-side HTML group and ask, "what's up?"
--
http://www.aspfaq.com/
(Reverse address to reply.)


"buzz" <bu****@freeuk.com> wrote in message
news:40***********************@news.dial.pipex.com ...
Aaron

Each line is a pallet of stock and one listbox contains what to do with it
and the second is a reasoncode. The user gooes through his/her stock
indicating stock that needs to be displosed of and the entire page is then updated to reflect these changes.

This is the extreme of the records available and there are filters to

reduce
the number of records but this option will still be required.

many thanks

buzz

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Does a user really need to see 5000 listboxes on one page? Why not make them choose some way to filter it down so they never have to see 2500
records at once? That page would be completely unusable, IMHO.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"buzz" <bu****@freeuk.com> wrote in message
news:40***********************@news.dial.pipex.com ...
> I would appreciate a pointer.....
>
> I have an asp page that links to an Access database and retrieves 2500 > records and each record line has two listboxes. The problem is,

although
> everything is fine when a few hundred records are retrieved, when
the full
> 2500 are the listboxes do not position themselves within the table

cell and
> even extend beyond the table at the bottom of the page. Any ideas?
>
> The server in NT4 running IIS4 and the browser used is IE6.
>
>



Jul 19 '05 #5
"buzz" <bu****@freeuk.com> wrote in message
news:40***********************@news.dial.pipex.com ...
Aaron

Each line is a pallet of stock and one listbox contains what to do with it
and the second is a reasoncode. The user gooes through his/her stock
indicating stock that needs to be displosed of and the entire page is then
updated to reflect these changes.

This is the extreme of the records available and there are filters to reduce the number of records but this option will still be required.


How about two (2) pages. One to list the pallets and another to display an
add/edit form. You could also implement paging on the list page to limit the
number of rows returned to some sane number like 10 or so. It's a pretty
common approach this type of scenario.
Jul 19 '05 #6
On Thu, 3 Jun 2004 19:41:20 +0100, "buzz" <bu****@freeuk.com> wrote:

Your computer may be low on resources. I had wierd problems like this
when using Win98 and a thing that had lots of controls on the web
page...

I use a computer now that has 750mb memory and win2000... you should
try the http call to the page on a different (better) computer...

If all the other items that are "flushed" from the server buffer to
the client look "good" then the client can't handle the amount of data
being spit at it...

Try a 2.4mhz box with a lot of mem and win2000. If that doesn't do
it... then you may be S.O.L. on the amount of data you're passing
back...

b.t.w. - you're welcome

I would appreciate a pointer.....

I have an asp page that links to an Access database and retrieves 2500
records and each record line has two listboxes. The problem is, although
everything is fine when a few hundred records are retrieved, when the full
2500 are the listboxes do not position themselves within the table cell and
even extend beyond the table at the bottom of the page. Any ideas?

The server in NT4 running IIS4 and the browser used is IE6.


Jul 19 '05 #7
mu*************@yahoo.com wrote:

I use a computer now that has 750mb memory and win2000... you should
try the http call to the page on a different (better) computer...


You must have an amazing number of memory slots:

512 + 128 + 64 + 32 + 8 + 4 + 2 = 750

Even if you're sharing memory with the video card, this requires five:

512 + 256 + 8 + 4 + 2 - 32 = 750

Impressive. ;-)

--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 19 '05 #8
Thanks very much, I appreciate the comments.....

I know the 2500 records seem a lot but this is what has been specced by
those requiring the application and would be quite usable if this problem
could be overcome. Planners are responsible for certain product lines and
require their products to be listed along with the pallet status' in
numerical order so that they can be systematically gone through. As I
mentioned earlier there are filters and this is the extreme but still
currently a requirement if achievable.

I shall try it on a beefier machine and then revisit if it still does not
display correctly..
<mu*************@yahoo.com> wrote in message
news:40***************@news.dallas.sbcglobal.net.. .
On Thu, 3 Jun 2004 19:41:20 +0100, "buzz" <bu****@freeuk.com> wrote:

Your computer may be low on resources. I had wierd problems like this
when using Win98 and a thing that had lots of controls on the web
page...

I use a computer now that has 750mb memory and win2000... you should
try the http call to the page on a different (better) computer...

If all the other items that are "flushed" from the server buffer to
the client look "good" then the client can't handle the amount of data
being spit at it...

Try a 2.4mhz box with a lot of mem and win2000. If that doesn't do
it... then you may be S.O.L. on the amount of data you're passing
back...

b.t.w. - you're welcome

I would appreciate a pointer.....

I have an asp page that links to an Access database and retrieves 2500
records and each record line has two listboxes. The problem is, although
everything is fine when a few hundred records are retrieved, when the full2500 are the listboxes do not position themselves within the table cell andeven extend beyond the table at the bottom of the page. Any ideas?

The server in NT4 running IIS4 and the browser used is IE6.

Jul 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: N. Graves | last post by:
Hello... thank you for your time. I have a form that has a List box of equipotent records and a sub form that will show the data of the equipment select from the list box. Is it possible to...
2
by: Geir Baardsen | last post by:
Hi! From a listbox I'd like to send only selected items to a report. Items will include: OrderNr,Date,EmployeeNr from tblOrders ZipCode,City from tblZipCodes Name,Adr,ZipID from...
3
by: google | last post by:
Hello, I am trying to create a listbox that users can select multiple entries on. I want Access to put each on of those selections in a different row on a particular table. This table will also...
1
by: Edward | last post by:
I am having a terrible time getting anything useful out of a listbox on my web form. I am populating it with the results from Postcode lookup software, and it is showing the results fine. What...
6
by: Chris Leuty | last post by:
I am populating a multiselect Listbox from a dataset, with the content of the listbox filled by one table, and the selections determined from another table. So far, I have been keeping the dataset...
4
by: James Radke | last post by:
Hello, I am creating an owner draw listbox for a windows application. It is all working, except the performance is significantly slower than the standard listbox. Basically what I have done is...
3
by: Prochot | last post by:
I'm trying to design a database to track projects and the associates assigned to them. I have almost no experience with this. I have three tables: -Projects -Associates -Assignments where...
18
by: Zytan | last post by:
I want the same function to be run whether you press Enter or double click the listbox. It seems really verbose to write both handlers to both events everytime, even if they both call the same...
7
by: EManning | last post by:
I'm using A2003 connected to a SQL 2000 backend. This is not an adp. I have a table which I store 0 and -1 for 2 bit fields. I have a listbox on a form based on a query of this table. The...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.