Buttons in forms

LeeG

New member
Local time
Today, 10:16
Joined
Jul 6, 2003
Messages
6
Hello does Access allow u to use any other graphics files as buttons in forms or am I just stuck with .BMP's???
 
I think it only suports the bitmap format. Just convert your graphics to bmp.
 
.dib
.bmp
.ico
.pcx
.fpx
.tif
.pct
.jpg
.gif
.bmp
.wpg
.wmf
.pcd
.eps
.emf
.cgm
.cdr
.png
.mix

can all be used as far as I know, and then just use...
Code:
Private Sub YourImage_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.YourImage.SpecialEffect = 2
End Sub
on the mouse down event and...
Code:
Private Sub YourImage_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.YourImage.SpecialEffect = 1
End Sub
on the mouse up event to get the same effect as a normal button.

IMO
 
Last edited:

Users who are viewing this thread

Back
Top Bottom