How to load multiple Images on the Form?

I have one form which is login form which contains username and image browsing field. Now in

Login.cs

[code]
private void LoadGameButton_Click(object sender, EventArgs e)
{
TicTacToe tic=new TicTacToe(usernametextBox.Text,imgTextbox.Text);
if (imgTextbox.Text.Equals(""))
{
MessageBox.Show("Please select any image");
return;
}
else
{
tic.Show();
// this.Hide();
}
}
[/code]

In TicTacToe.cs

[code]
public TicTacToe(String strText,string img)
{
InitializeComponent();
if (strText.Equals(""))
{
label2.Text = "Guest";
}
else
{
label2.Text = strText;

}

pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
//pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;

pictureBox1.Load(img);
pictureBox1.Refresh();
}
[/code]

Question is:
[B]I defined two picturebox fields on this form where i can load 2 people images but now how to write the code so that once the user is logged in image will come in one picturebox and when second user is logged in it will come in second picturebox and after that login form should be hidden.[/B]

Please help?
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories