L LeeG New member Local time Today, 10:16 Joined Jul 6, 2003 Messages 6 Jul 18, 2003 #1 Hello does Access allow u to use any other graphics files as buttons in forms or am I just stuck with .BMP's???
Hello does Access allow u to use any other graphics files as buttons in forms or am I just stuck with .BMP's???
S Shadez Registered User. Local time Today, 10:16 Joined Jan 20, 2003 Messages 192 Jul 18, 2003 #2 I think it only suports the bitmap format. Just convert your graphics to bmp.
IMO Now Known as ___ Local time Today, 10:16 Joined Sep 11, 2002 Messages 723 Jul 18, 2003 #3 .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: Jul 18, 2003
.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