Welcome to Dream.In.Code
Getting C# Help is Easy!

Join 136,412 C# Programmers for FREE! Get instant access to thousands of C# experts, tutorials, code snippets, and more! There are 2,451 people online right now. Registration is fast and FREE... Join Now!




display images randomly on buttons

 
Reply to this topicStart new topic

display images randomly on buttons

anee4u
15 Oct, 2008 - 10:32 AM
Post #1

New D.I.C Head
*

Joined: 15 Oct, 2008
Posts: 2

Hi Members,
I am new to this forum n i'm anil.....
i am developing a code for memorize game...... n my problem is
[b]i have 16 buttons and 8 images,i have to display exactly 2 times an image can be displayed on buttons.....i write code like this....
CODE

public memo()
{
Random r =  new Random();
int picno;
picno  = r.Next(0,ImagList.Images.Count);
button1.Image = ImagList.Images[picno];
picno  = r.Next(0,ImagList.Images.Count);
button2.Image = ImagList.Images[picno];
picno  = r.Next(0,ImagList.Images.Count);
button3.Image = ImagList.Images[picno];
;;;
;;;;
;;;
}

i'm getting the images randomly on my buttons but some images are coming more than 2 times....
to avoid that i want a solution......
i tried alot but i did not suceedeed.....
thanks in advance to all of them sending the responses.........

This post has been edited by anee4u: 15 Oct, 2008 - 10:36 AM
User is offlineProfile CardPM
+Quote Post

modi123_1
RE: Display Images Randomly On Buttons
15 Oct, 2008 - 12:08 PM
Post #2

D.I.C Addict
Group Icon

Joined: 12 Jun, 2008
Posts: 531



Thanked: 13 times
Dream Kudos: 100
My Contributions
Keep an array of int counters (set to zero) the size of the number of images you have in your list. Each time you use one increment that image's corresponding counter by one. If you get over two then don't use that image and use another.
User is online!Profile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 12/2/08 12:34PM

Live C# Help!

C# Tutorials

Reference Sheets

C# Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month