VB Code:
  1. Private Sub TmrPCMove_Timer()
  2.     On Error Resume Next
  3.     Static LaCase2 As Integer
  4.     If LaCase2 < LblCasePC2.Caption Then
  5.         ImgCase(LaCase2).Picture = ImgPionPC.Picture
  6.         ImgCase(LaCase2 - 1).Picture = Nothing
  7.         ImgPionPC.Visible = False
  8.     ElseIf LaCase2 >= LblCasePC2.Caption Then
  9.         TmrPCMove.Enabled = False
  10.         Exit Sub
  11.     End If
  12.     LaCase2 = LaCase2 + 1
  13. End Sub

this makes a picture advance in other picture boxes... It works, but, this is for a board game and there are two players... when playerone passes over playertwo, playertwo disappears (because of the line: ImgCase(LaCase2 - 1).Picture = Nothing) ... I know why.. but I don't know how to fix it....