Can a PictureBox show animated GIF in Windows Application?
I would like to show a animated gif in .Net Winform. How to do this? I previously used VB 6.0. Jeremy Thompson Put a picturebox on a form and then specify a picture file with a Gif extension. Or: Programatically animate a gif Image loading frames into a PictureBox with code, here's the Gif class: VB.NET Public Class GifImage Private gifImage As Image Private dimension As FrameDimension Private frameCount As Integer Private currentFrame As Integer = -1 Private reverse As Boolean Private [step] As Integer = 1 Public Sub New(path As String) gifImage = Image.FromFile(path) 'initialize dimension =