Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / September 2007

Tip: Looking for answers? Try searching our database.

List Box scrolling

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
arnabit@gmail.com - 10 Sep 2007 10:24 GMT
I have two listbox in a page in my website. one listbox contain report
owner name the other one contain the report name.. both the listbox
are databound.
what i wanted is that when i scroll one listbox the listbox should
also be scrolled and vice versa . please give a workaround.

thanks in advance,
Arnab
Eliyahu Goldin - 10 Sep 2007 13:58 GMT
It's a pretty complex task. You need to have a very good understanding of
client-side events and programming. I doubt the effect is worth of effort.

Signature

Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net

>I have two listbox in a page in my website. one listbox contain report
> owner name the other one contain the report name.. both the listbox
[quoted text clipped - 4 lines]
> thanks in advance,
> Arnab
arnabit@gmail.com - 11 Sep 2007 05:38 GMT
On Sep 10, 5:58 pm, "Eliyahu Goldin"
<REMOVEALLCAPITALSeEgGoldD...@mMvVpPsS.org> wrote:
> It's a pretty complex task. You need to have a very good understanding of
> client-side events and programming. I doubt the effect is worth of effort.
[quoted text clipped - 18 lines]
>
> - Show quoted text -

yaa i know it is a complex task,but i have to do this.can you tell me
a workaround ,its urgent..
Alexey Smirnov - 11 Sep 2007 11:27 GMT
On Sep 10, 2:58 pm, "Eliyahu Goldin"
<REMOVEALLCAPITALSeEgGoldD...@mMvVpPsS.org> wrote:
> It's a pretty complex task. You need to have a very good understanding of
> client-side events and programming. I doubt the effect is worth of effort.
[quoted text clipped - 18 lines]
>
> - Show quoted text -

http://groups.google.com/group/microsoft.public.dotnet.framework.aspnet/browse_t
hread/thread/8651d6c99933a338

SE.Computerguy - 11 Sep 2007 16:01 GMT
On Sep 10, 4:24 am, "arna...@gmail.com" <arna...@gmail.com> wrote:
> I have two listbox in a page in my website. one listbox contain report
> owner name the other one contain the report name.. both the listbox
[quoted text clipped - 4 lines]
> thanks in advance,
> Arnab

Why not concatinate the strings together prior to loading the listbox
and using just one listbox?

something like this:
while(datareader.Read())
{
  string name = datareader["reportOwnerColumn"]. ToString() + ": " +
datareader["reportNameColumn"]. ToString();
  ListBox.Items.Add(new ListItem(name, SomeKeyValue.ToString()));
  name=String.Empty();
}
Alexey Smirnov - 11 Sep 2007 22:06 GMT
> On Sep 10, 4:24 am, "arna...@gmail.com" <arna...@gmail.com> wrote:
>
[quoted text clipped - 21 lines]
>
> - Show quoted text -

a DataView control could be an option too

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.