Link to home
Start Free TrialLog in
Avatar of kevinscheidt
kevinscheidt

asked on

Display 100 Images at Once

I have a situation where I need to display 100 (actually, 130 images at once).  I am developing an application where it displays The Japanese Hiragana (or Katakana depending on what section you are in).  There are (not exact, would be like saying there are 30 english alphabet letters when there is actually only 26), about 46? basic letters (aeiou, ka ke, etc to n) plus the Ga series and the Ryo series.  Thus 50 basic, 30? extended and 30? advanced letter combinations.

I need to display one larger image (only about 100x100 pixels), and then each alphabet letter (only about 30x30 pixels each).  Thus I will end up with about 110? pictures on my page.

VB.Net as a distributed desktop application displays the images FAST.  the issue is the controls themselves, the 100 picture boxes, take FOREVER to display.   Each image needs to be a separate picture box as the image positions will be randomized.  It's to prompt the user to select the corect letter to the sound played and the Romanji displayed, or vice versa.  (thus a single image of all the hiragana / katakana does not suffice).


What is the best way to utilize this/do this?  Put the images in three side or 5 side by side or more repeaters/datagrids or whatever are avail for VB.net, do it in Flash instead, or ditch the whole process and develop it as a website?  i've been trying to avoid doing it as a website b/c I'd like to be able to drop it on a laptop to take on trips with me.

THanks for your help
ASKER CERTIFIED SOLUTION
Avatar of Mohamed Zedan
Mohamed Zedan
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of kevinscheidt
kevinscheidt

ASKER

Provided an answer but didn't provide much insight/code.  Thank you for the help, it atleast pointed me in the right direction.