
Signature
Adam Thwaites
Access Database Designer
adam.thwaites.remove@thisbit.mercedes.co.uk
Manchester, UK
A command button has a PictureData property from which you can copy the data
into a byte array from which you can restore your image later in the
procedure so try something like:
Dim bArray() As Byte
ReDim bArray(LenB(Me.cmd1.PictureData) - 1)
bArray = Me.cmd1.PictureData
'Do your countdown
Me.cmd1.PictureData = bArray
HTH
>I haev a command button that I only want to be clicked a maximum of once a
> minute. To start with it has a picture MS Access Report 2. Once clicked it
[quoted text clipped - 5 lines]
>
> Any ideas?
Adam Thwaites - 11 Sep 2007 14:32 GMT
Works like a charm, thanks Jon

Signature
Adam Thwaites
Access Database Designer
adam.thwaites.remove@thisbit.mercedes.co.uk
Manchester, UK
> A command button has a PictureData property from which you can copy the data
> into a byte array from which you can restore your image later in the
[quoted text clipped - 19 lines]
> >
> > Any ideas?