Not what I wanted....found out how now
You will need (1) an image editor such as Photoshop or Paint Shop Pro and (2) some imagination (grin).
Determine what you would like for command button images; should you suffer some creative block visit a site such as
for inspiration.
In the image editor, create your buttons - round ones, flat ones as in MS Money - whatever you prefer. Fashion one button for "normal" and another for when the user has clicked the button, as in a mouseover event.
If your buttons are composed of large blocks of single colours, save the image as GIF. If yours is more like a photograph then use JPEGs.
On your VB form create both buttons as images. Name the buttons that which appeals to you; I used as an example "imgCreateTask" for the "normal" button and "imgSelCreateTask" for the clicked button (Sel means "selected"

.
The latter button must be ".visible = false"
Now the MouseUp and MouseDown procedures are important, "click" is no more.
Private Sub imgCreateTask_MouseDown(Button as Integer ...)
imgCreateTask.Visible = False
imgSelCreateTask.Visible = True
End Sub
Private Sub imgCreateTask_MouseUp(Button as Integer ...)
imgCreateTask.Visible = True
imgSelCreateTask.Visible = False
Select Case Button
Case 1
<put your code here>
Case 2
Beep
<or create a pop up menu for help>
Case 3
Beep
End Select
End Sub
Remember to always place your code in the MouseUp so that your button might return to "normal" and use the Select Case Button so that the right mouse button cannot initiate the same routines as the left; otherwise, you might confuse the users.