Click here to Skip to main content
15,924,507 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi EveryOne..

I have developed a process wizard similar to that of VS2010 (during installation) using listview and some other controls.
now i need the each item to scrolled up when ever the its process is completed ...(i.e some thing like the titles scrolls after the film completion).
Any codeSamples or Anyideas... pls helpme out

Thanks in Advance..
Posted

1 solution

The listview object has an EnsureVisible(i) method that scrolls to the index (i) of the item you want to, as you guessed, ensure is visible, scrolling if required.

so simple call;


listview1.EnsureVisible(i);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900