Hi
You could have a series of picture controls (or image controls), and load pictures into them using the load picture method. For each digit, (having done the maths to get separate variables for each one) you could use Select Case to load the pictures:
Select case nTensMinutes
case 0
picture1.picture = loadpicture ("zero.gif")
case 1
picture1.picture = loadpicture ("one.gif")
'
'
'
'
End Select
I'm not sure about the resource control implementation.
As for your button, on the form load event disable it:
Private Sub Form_Load()
Command1.Enabled=false
' etc
' etc
then, when your minutes variable gets to 4,
If nMinutes = 4 then
command1.enabled = true
End If
Hope this helps, have a good Christmas
AlanC