Hi all!

I have this load an image to a picturebox:
csharp Code:
  1. private void onLoadImages(object sender, System.EventArgs e)
  2.         {
  3.             OpenFileDialog ofd = new OpenFileDialog();
  4.             ofd.InitialDirectory = System.Environment.CurrentDirectory;
  5.             ofd.Filter = "Icons (*.ico)|*.ico|BMPs (*.bmp)|*.bmp|GIFs (*.gif)|*.gif|JPEGs (*.jp*)|*.jp*|PNGs (*.png)|*.png";
  6.             if (ofd.ShowDialog(this) != DialogResult.Cancel)
  7.             {
  8.                 Image img = Image.FromFile(ofd.FileName);
  9.                 this.pictureBox1.Image = new Bitmap(img, new Size(32, 32));
  10.             }
  11.         }
But this, as you may know..replace the old image...I want to make like a imagelist viewer, so the the image will be next to another...any ideas?