TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Jozo Hadziselimovich
NA
3
3.6k
Has anybody seen anything so stupid before?!?!?!
Jan 22 2009 6:36 PM
Hellow everybody!
I just have a simple but very stupid problem.. I'm writing a windows forms applicaton that generates random letters and put them in the form's label control.
private void OnStart(object sender, EventArgs e) //Event when you click on button 'Start'
{
//timer1.Start();
String[] text=new String[4];
for (int i = 0; i < 4; i++)
{
int number = GenerateNumber(1, 25); //1 and 25 are max and min
text[i] = GetLetter(number); //Function that returns a letter(type is String) and it works OK
//MessageBox.Show("Letter: " + text[i]);
}
label1.Text = text[0]+text[1]+text[2]+text[3];
}
And here is the problem: In the label1 control i get four(4) letters which are the same(example: RRRR). Now if I only change this:
private void OnStart(object sender, EventArgs e) //Event when you click on button 'Start'
{
//timer1.Start();
String[] text=new String[4];
for (int i = 0; i < 4; i++)
{
int number = GenerateNumber(1, 25); //1 and 25 are max and min
text[i] = GetLetter(number); //Function that returns a letter(type is String) and it works OK
MessageBox.Show("Letter: " + text[i]); //I changed only this line
}
label1.Text = text[0]+text[1]+text[2]+text[3];
}
Now I get four different letters(in the label1 control) which is OK(example: RSJK). Has anybody have any idea
what my problem is???
Reply
Answers (
3
)
Passwords in C#
parser project needs C++ programmer