Idea needed: I need a control

  • Thread starter Thread starter Fritz the Cat
  • Start date Start date
F

Fritz the Cat

Hiya
I need a control that will read the contents of a folder of 20 images.
It will display the latest image, as well as numbers 1-20 , so that by
clicking the number I will get a new image.
in addition , this could use ajaxulation.

what is my solution?

thanks
 
System.IO has methods for looping over directory contents.

If you're in 2.0, you can define a

Dictionary < int , string >

throw the image file names in there, and auto increment the int value.

http://www.csharp-station.com/Articles/Thumbnails.aspx
shows thumbnails.

You can also create 1.gif, 2.gif, .......... 9.gif and 0.gif and then make
number combo's with them.
 
Back
Top