Link to home
Start Free TrialLog in
Avatar of rknepp
rknepp

asked on

Circular Command Button

I have the need to make a round command button.  I have the image of the 'UP' or un-pressed state and the 'DOWN' or pressed state.  I've tried using the standard command button using the graphical style, however I don't want to see the square button itself.  I've also tried using picture and image boxes, and changing the picture on the mouse_down and mouse_up events. This works better, but once again it shows me the square outline of the box.  This technique would be ok if I could somehow set a transparency coler key for the image box (so that only the circle button is painted), however I can not think of any way of doing this.  Does anyone have any ideas on how I can do this.  I prefer using win32 API's as I am going to be porting the entire project to C++ once the proof of concept is complete.
Avatar of Maxim10553
Maxim10553
Flag of United States of America image

try using the image control. you should be able to change the picture on the mouse events and no annoying outlines.
i don't know if you've tried this already but try playing around with something like this:

use the graphical style for the button and put image on it

Private Declare Function CreateEllipticRgn Lib "gdi32" (ByVal X1 As Long, _
ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long) As Long
Private Declare Function SetWindowRgn Lib "user32" (ByVal hWnd As Long, _
ByVal hRgn As Long, ByVal bRedraw As Boolean) As Long
Private Declare Function DeleteObject Lib "gdi32.dll" (ByVal hObject As _
Long) As Long


Private Sub Form_Load()
   Dim fwidth As Long, fheight As Long
   Dim rval As Long, nhwnd As Long
   
   fwidth = Command1.Width / Screen.TwipsPerPixelX
   fheight = Command1.Height / Screen.TwipsPerPixelY
   
   'Create Elliptic Region
   'nhwnd = CreateEllipticRgn(0, 0, fwidth, fheight)
   'Create Circular Region
   nhwnd = CreateEllipticRgn(0, _
               0, fheight, fheight)
   'Set Created Elliptic Region on form
   rval = SetWindowRgn(Command1.hWnd, nhwnd, True)
   rval = DeleteObject(nhwnd)

End Sub

you'll just have to adjust the x1, y1, x2, y2 coordinates of the circle to make it look right.

good luck!
Avatar of Otana
Otana

Is the background of your up- and down-images transparent?
Avatar of rknepp

ASKER

The 'UP' and 'DOWN' states of the images are transparent in PaintShopPro however they don't seems to be that way when I put them in the image control.  Do I have to use a specific image type (GIF instead of BMP)?  I have thought of using the 'SetWindowRgn' API call, but haven't tried it yet.
have you also tried using gifs with transparent backgrounds and the image control and then code something like this?

Private Sub Form_Load()

    Image1.Visible = True
    Image2.Visible = False

End Sub

Private Sub Image1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
   Image1.Visible = False
   Image2.Visible = True
End Sub

Private Sub Image1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
   Image2.Visible = False
   Image1.Visible = True
End Sub
yeah, use gif to make transparent
Avatar of rknepp

ASKER

The 'UP' and 'DOWN' states of the images are transparent in PaintShopPro however they don't seems to be that way when I put them in the image control.  Do I have to use a specific image type (GIF instead of BMP)?  I have thought of using the 'SetWindowRgn' API call, but haven't tried it yet.
Avatar of rknepp

ASKER

Also, I don't want any focus rectangle around the button once it's been click (plus it won't have tabstop).
Avatar of rknepp

ASKER

Also, I don't want any focus rectangle around the button once it's been click (plus it won't have tabstop).
ASKER CERTIFIED SOLUTION
Avatar of bobbit31
bobbit31
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
did you try using the image control rknepp or are you just avoiding it?
Avatar of rknepp

ASKER

The above code snippets really helped! Although the line:

nhwnd = CreateEllipticRgn(0, _
              0, fheight, fheight)

should read as follows:

nhwnd = CreateEllipticRgn(0, _
              0, fwidth, fheight)

hehehe :-)

Only problem is that it gives the focus rectangle.
so you do not want to use the image control? it's easier.
Avatar of rknepp

ASKER

I am going to try the Image control... I just need some time to make the GIF and it's tranparency...
Avatar of rknepp

ASKER

Well, how about that! All I really needed was the transparent GIF using the image control, NOT the picture control!
Avatar of rknepp

ASKER

Now that was quick service!
glad to help!