load/display image problem Programming Software Development by yuriythebest … sender, EventArgs e) { InitializeComponent(); Bitmap objBitmap = new Bitmap("D:\\ImageRecognition\\image.jpg"); Graphics g = Graphics.FromHwnd(Handle); g.DrawImage… Re: USB webcam support in C(running under LINUX) Programming Software Development by Nick Evan I think OpenCV is what your looking for, it's free, windows/linux and has a imagerecognition. Re: load/display image problem Programming Software Development by kvprajapati [b]>however neither does anything appear.[/b] Place your code inside the [B]Paint [/B]event handler of a form. [code] private void Form1_Paint(object sender, PaintEventArgs e) { Bitmap bmp = new Bitmap(@"c:\folder\file1.gif"); Graphics g = Graphics.FromHwnd(this.Handle); g.DrawImage(bmp, …