Wie kann man Steuerelemente für VB5/6 erstellen? Beispiel: Steuerelement XP Button

Erstellt dazu einfach ein Usercontrol. Auf dieses setzt ihr keine Elemente, sondern kopiert einfach den Source in das Usercontrol

Option Explicit

Private Declare Function SetPixel Lib "gdi32" Alias "SetPixelV" (ByVal hDC As Long, ByVal X As Long, ByVal Y As Long, ByVal crColor As Long) As Long
Private Declare Function GetSysColor Lib "user32" (ByVal nIndex As Long) As Long
Private Declare Function OleTranslateColor Lib "oleaut32.dll" (ByVal lOleColor As Long, ByVal lHPalette As Long, lColorRef As Long) As Long
Private Declare Function GetBkColor Lib "gdi32" (ByVal hDC As Long) As Long
Private Declare Function GetTextColor Lib "gdi32" (ByVal hDC As Long) As Long
Private Declare Function SetTextColor Lib "gdi32" (ByVal hDC As Long, ByVal crColor As Long) As Long
Private Declare Function DrawText Lib "user32" Alias "DrawTextA" (ByVal hDC As Long, ByVal lpStr As String, ByVal nCount As Long, lpRect As RECT, ByVal wFormat As Long) As Long
Private Declare Function CreateSolidBrush Lib "gdi32" (ByVal crColor As Long) As Long
Private Declare Function FillRect Lib "user32" (ByVal hDC As Long, lpRect As RECT, ByVal hBrush As Long) As Long
Private Declare Function FrameRect Lib "user32" (ByVal hDC As Long, lpRect As RECT, ByVal hBrush As Long) As Long
Private Declare Function DrawFocusRect Lib "user32" (ByVal hDC As Long, lpRect As RECT) As Long
Private Declare Function Ellipse Lib "gdi32" (ByVal hDC As Long, ByVal X1 As Long, ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long) As Long
Private Declare Function GetClientRect Lib "user32" (ByVal hwnd As Long, lpRect As RECT) As Long
Private Declare Function InflateRect Lib "user32" (lpRect As RECT, ByVal X As Long, ByVal Y As Long) As Long
Private Declare Function OffsetRect Lib "user32" (lpRect As RECT, ByVal X As Long, ByVal Y As Long) As Long
Private Declare Function CopyRect Lib "user32" (lpDestRect As RECT, lpSourceRect As RECT) As Long
Private Declare Function WindowFromPoint Lib "user32" (ByVal xPoint As Long, ByVal yPoint As Long) As Long
Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
Private Declare Function SetCapture Lib "user32" (ByVal hwnd As Long) As Long
Private Declare Function ReleaseCapture Lib "user32" () As Long
Private Declare Function GetDC Lib "user32" (ByVal hwnd As Long) As Long
Private Declare Function GetParent Lib "user32" (ByVal hwnd As Long) As Long
Private Declare Function GetDIBits Lib "gdi32" (ByVal aHDC As Long, ByVal hBitmap As Long, ByVal nStartScan As Long, ByVal nNumScans As Long, lpBits As Any, lpbi As BITMAPINFO, ByVal wUsage As Long) As Long
Private Declare Function SetDIBitsToDevice Lib "gdi32" (ByVal hDC As Long, ByVal X As Long, ByVal Y As Long, ByVal dx As Long, ByVal dy As Long, ByVal SrcX As Long, ByVal SrcY As Long, ByVal Scan As Long, ByVal NumScans As Long, BITS As Any, BitsInfo As BITMAPINFO, ByVal wUsage As Long) As Long
Private Declare Function BitBlt Lib "gdi32" (ByVal hDestDC As Long, ByVal X As Long, ByVal Y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal hSrcDC As Long, ByVal xSrc As Long, ByVal ySrc As Long, ByVal dwRop As Long) As Long
Private Declare Function CreateCompatibleDC Lib "gdi32" (ByVal hDC As Long) As Long
Private Declare Function CreateCompatibleBitmap Lib "gdi32" (ByVal hDC As Long, ByVal nWidth As Long, ByVal nHeight As Long) As Long
Private Declare Function DeleteDC Lib "gdi32" (ByVal hDC As Long) As Long
Private Declare Function DrawIconEx Lib "user32" (ByVal hDC As Long, ByVal xLeft As Long, ByVal yTop As Long, ByVal hIcon As Long, ByVal cxWidth As Long, ByVal cyWidth As Long, ByVal istepIfAniCur As Long, ByVal hbrFlickerFreeDraw As Long, ByVal diFlags As Long) As Long
Private Declare Function CreateBitmap Lib "gdi32" (ByVal nWidth As Long, ByVal nHeight As Long, ByVal nPlanes As Long, ByVal nBitCount As Long, lpBits As Any) As Long
Private Declare Function GetDeviceCaps Lib "gdi32" (ByVal hDC As Long, ByVal nIndex As Long) As Long
Private Declare Function DeleteObject Lib "gdi32" (ByVal hObject As Long) As Long
Private Declare Function SelectObject Lib "gdi32" (ByVal hDC As Long, ByVal hObject As Long) As Long
Private Declare Function MoveToEx Lib "gdi32" (ByVal hDC As Long, ByVal X As Long, ByVal Y As Long, lpPoint As POINTAPI) As Long
Private Declare Function LineTo Lib "gdi32" (ByVal hDC As Long, ByVal X As Long, ByVal Y As Long) As Long
Private Declare Function CreatePen Lib "gdi32" (ByVal nPenStyle As Long, ByVal nWidth As Long, ByVal crColor As Long) As Long
Private Declare Function CreateRectRgn Lib "gdi32" (ByVal X1 As Long, ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long) As Long
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 CombineRgn Lib "gdi32" (ByVal hDestRgn As Long, ByVal hSrcRgn1 As Long, ByVal hSrcRgn2 As Long, ByVal nCombineMode As Long) As Long
Private Declare Function SetWindowRgn Lib "user32" (ByVal hwnd As Long, ByVal hRGN As Long, ByVal bRedraw As Long) As Long

Private Const COLOR\_HIGHLIGHT = 13
Private Const COLOR\_BTNFACE = 15
Private Const COLOR\_BTNSHADOW = 16
Private Const COLOR\_BTNTEXT = 18
Private Const COLOR\_BTNHIGHLIGHT = 20
Private Const COLOR\_BTNDKSHADOW = 21
Private Const COLOR\_BTNLIGHT = 22
Private Const DT\_CALCRECT = &H400
Private Const DT\_WORDBREAK = &H10
Private Const DT\_CENTER = &H1 Or DT\_WORDBREAK Or &H4
Private Const PS\_SOLID = 0
Private Const RGN\_DIFF = 4
Private Const FXDEPTH As Long = &H28

Private Type RECT
 Left As Long
 Top As Long
 Right As Long
 Bottom As Long
End Type

Private Type POINTAPI
 X As Long
 Y As Long
End Type

Private Type BITMAPINFOHEADER
 biSize As Long
 biWidth As Long
 biHeight As Long
 biPlanes As Integer
 biBitCount As Integer
 biCompression As Long
 biSizeImage As Long
 biXPelsPerMeter As Long
 biYPelsPerMeter As Long
 biClrUsed As Long
 biClrImportant As Long
End Type

Private Type RGBTRIPLE
 rgbBlue As Byte
 rgbGreen As Byte
 rgbRed As Byte
End Type

Private Type BITMAPINFO
 bmiHeader As BITMAPINFOHEADER
 bmiColors As RGBTRIPLE
End Type

Public Enum ButtonTypes
 [Windows 16-bit] = 1
 [Windows 32-bit] = 2
 [Windows XP] = 3
 [Mac] = 4
 [Java metal] = 5
 [Netscape 6] = 6
 [Simple Flat] = 7
 [Flat Highlight] = 8
 [Office XP] = 9
 '[MacOS-X] = 10
 [Transparent] = 11
 [3D Hover] = 12
 [Oval Flat] = 13
 [KDE 2] = 14
End Enum

Public Enum ColorTypes
 [Use Windows] = 1
 [Custom] = 2
 [Force Standard] = 3
 [Use Container] = 4
End Enum

Public Enum PicPositions
 cbLeft = 0
 cbRight = 1
 cbTop = 2
 cbBottom = 3
 cbBackground = 4
End Enum

Public Enum fx
 cbNone = 0
 cbEmbossed = 1
 cbEngraved = 2
 cbShadowed = 3
End Enum



Public Event Click()
Public Event MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Public Event MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Public Event MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Public Event KeyPress(KeyAscii As Integer)
Public Event KeyDown(KeyCode As Integer, Shift As Integer)
Public Event KeyUp(KeyCode As Integer, Shift As Integer)
Public Event MouseOver()
Public Event MouseOut()

Private MyButtonType As ButtonTypes
Private MyColorType As ColorTypes
Private PicPosition As PicPositions
Private SFX As fx
Private He As Long
Private Wi As Long
Private BackC As Long
Private BackO As Long
Private ForeC As Long
Private ForeO As Long
Private MaskC As Long
Private OXPb As Long, OXPf As Long
Private useMask As Boolean, useGrey As Boolean
Private useHand As Boolean
Private picNormal As StdPicture, picHover As StdPicture
Private pDC As Long, pBM As Long, oBM As Long
Private elTex As String
Private rc As RECT, rc2 As RECT, rc3 As RECT, fc As POINTAPI
Private picPT As POINTAPI, picSZ As POINTAPI
Private rgnNorm As Long
Private LastButton As Byte, LastKeyDown As Byte, lastStat As Byte
Private blnEnabled As Boolean, blnSoft As Boolean
Private blnHasFocus As Boolean, blnShowFocusRectangle As Boolean
Private cFace As Long, cLight As Long, cHighLight As Long
Private cShadow As Long, cDarkShadow As Long, cText As Long
Private cTextO As Long, cFaceO As Long, cMask As Long, XPFace As Long
Private TE As String
Private blnIsOver As Boolean, blnInLoop As Boolean, blnIsShown As Boolean
Private captOpt As Long
Private blnIsCheckbox As Boolean, blnCheckBoxValue As Boolean

Private Sub moveMouse()
 If Not IsMouseOver() Then
 blnIsOver = False
 Redraw 0, True
 RaiseEvent MouseOut
 ReleaseCapture
 Else
 SetCapture UserControl.hwnd
 End If
End Sub

Private Sub UserControl\_AccessKeyPress(KeyAscii As Integer)
 LastButton = 1
 UserControl\_Click
End Sub

Private Sub UserControl\_AmbientChanged(PropertyName As String)
 If MyColorType [Custom] Then
 SetColors
 Redraw lastStat, True
 End If
End Sub

Private Sub UserControl\_Click()
 If LastButton = vbLeftButton And blnEnabled Then
 If blnIsCheckbox Then
 blnCheckBoxValue = Not blnCheckBoxValue
 End If
 Redraw 0, True
 UserControl.Refresh
 RaiseEvent Click
 End If
End Sub

Private Sub UserControl\_DblClick()
 If LastButton = vbLeftButton Then
 UserControl\_MouseDown 1, 0, 0, 0
 SetCapture hwnd
 End If
End Sub

Private Sub UserControl\_GotFocus()
 blnHasFocus = True
 Redraw lastStat, True
End Sub

Private Sub UserControl\_Hide()
 blnIsShown = False
End Sub

Private Sub UserControl\_Initialize()
 blnIsShown = True
End Sub

Private Sub UserControl\_KeyDown(KeyCode As Integer, Shift As Integer)
 RaiseEvent KeyDown(KeyCode, Shift)
 LastKeyDown = KeyCode
 Select Case KeyCode
 Case 32
 Redraw 2, False
 Case 39, 40
 SendKeys "{Tab}"
 Case 37, 38
 SendKeys "+{Tab}"
 End Select
End Sub

Private Sub UserControl\_KeyPress(KeyAscii As Integer)
 RaiseEvent KeyPress(KeyAscii)
End Sub

Private Sub UserControl\_KeyUp(KeyCode As Integer, Shift As Integer)
 RaiseEvent KeyUp(KeyCode, Shift)
 If KeyCode = 32 And LastKeyDown = 32 Then
 If blnIsCheckbox Then
 blnCheckBoxValue = Not blnCheckBoxValue
 End If
 Redraw 0, False
 UserControl.Refresh
 RaiseEvent Click
 End If
End Sub

Private Sub UserControl\_LostFocus()
 blnHasFocus = False
 Redraw lastStat, True
End Sub

Private Sub UserControl\_InitProperties()
 blnEnabled = True
 blnShowFocusRectangle = True
 useMask = True
 elTex = Ambient.DisplayName
 Set UserControl.Font = Ambient.Font
 MyButtonType = [Windows 32-bit]
 MyColorType = [Use Windows]
 SetColors
 BackC = cFace
 BackO = BackC
 ForeC = cText
 ForeO = ForeC
 MaskC = &HC0C0C0
 CalcTextRects
End Sub

Private Sub UserControl\_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
 RaiseEvent MouseDown(Button, Shift, X, Y)
 LastButton = Button
 If Button vbRightButton Then
 Redraw 2, False
 End If
End Sub

Private Sub UserControl\_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
 RaiseEvent MouseMove(Button, Shift, X, Y)
 moveMouse
 If Button vbRightButton Then
 Redraw 0, False
 End If
End Sub

Public Property Get BackColor() As OLE\_COLOR
 BackColor = BackC
End Property

Public Property Let BackColor(ByVal theCol As OLE\_COLOR)
 BackC = theCol
 If Not Ambient.UserMode Then
 BackO = theCol
 End If
 SetColors
 Redraw lastStat, True
 PropertyChanged
End Property

Public Property Get BackOver() As OLE\_COLOR
 BackOver = BackO
End Property

Public Property Let BackOver(ByVal theCol As OLE\_COLOR)
 BackO = theCol
 SetColors
 Redraw lastStat, True
 PropertyChanged
End Property

Public Property Get ForeColor() As OLE\_COLOR
 ForeColor = ForeC
End Property

Public Property Let ForeColor(ByVal theCol As OLE\_COLOR)
 ForeC = theCol
 If Not Ambient.UserMode Then
 ForeO = theCol
 End If
 SetColors
 Redraw lastStat, True
 PropertyChanged
End Property

Public Property Get ForeOver() As OLE\_COLOR
 ForeOver = ForeO
End Property

Public Property Let ForeOver(ByVal theCol As OLE\_COLOR)
 ForeO = theCol
 SetColors
 Redraw lastStat, True
 PropertyChanged
End Property

Public Property Get MaskColor() As OLE\_COLOR
 MaskColor = MaskC
End Property

Public Property Let MaskColor(ByVal theCol As OLE\_COLOR)
 MaskC = theCol
 SetColors
 Redraw lastStat, True
 PropertyChanged
End Property

Public Property Get ButtonType() As ButtonTypes
 ButtonType = MyButtonType
End Property

Public Property Let ButtonType(ByVal NewValue As ButtonTypes)
 MyButtonType = NewValue
 If MyButtonType = [Java metal] And Not Ambient.UserMode Then
 UserControl.FontBold = True
 ElseIf MyButtonType = Transparent And blnIsShown Then
 GetParentPic
 End If
 UserControl\_Resize
 PropertyChanged
End Property

Public Property Get Caption() As String
 Caption = elTex
End Property

Public Property Let Caption(ByVal NewValue As String)
 elTex = NewValue
 SetAccessKeys
 CalcTextRects
 Redraw 0, True
 PropertyChanged
End Property

Public Property Get Enabled() As Boolean
 Enabled = blnEnabled
End Property

Public Property Let Enabled(ByVal NewValue As Boolean)
 blnEnabled = NewValue
 Redraw 0, True
 UserControl.Enabled = blnEnabled
 PropertyChanged "Enabled"
End Property

Public Property Get Font() As Font
 Set Font = UserControl.Font
End Property

Public Property Set Font(ByRef NewFont As Font)
 Set UserControl.Font = NewFont
 CalcTextRects
 Redraw 0, True
 PropertyChanged
End Property

Public Property Get FontBold() As Boolean
 FontBold = UserControl.FontBold
End Property

Public Property Let FontBold(ByVal NewValue As Boolean)
 UserControl.FontBold = NewValue
 CalcTextRects
 Redraw 0, True
 PropertyChanged
End Property

Public Property Get FontItalic() As Boolean
 FontItalic = UserControl.FontItalic
End Property

Public Property Let FontItalic(ByVal NewValue As Boolean)
 UserControl.FontItalic = NewValue
 CalcTextRects
 Redraw 0, True
 PropertyChanged
End Property

Public Property Get FontUnderline() As Boolean
 FontUnderline = UserControl.FontUnderline
End Property

Public Property Let FontUnderline(ByVal NewValue As Boolean)
 UserControl.FontUnderline = NewValue
 CalcTextRects
 Redraw 0, True
 PropertyChanged
End Property

Public Property Get FontSize() As Integer
 FontSize = UserControl.FontSize
End Property

Public Property Let FontSize(ByVal NewValue As Integer)
 UserControl.FontSize = NewValue
 CalcTextRects
 Redraw 0, True
 PropertyChanged
End Property

Public Property Get FontName() As String
 FontName = UserControl.FontName
End Property

Public Property Let FontName(ByVal NewValue As String)
 UserControl.FontName = NewValue
 CalcTextRects
 Redraw 0, True
 PropertyChanged
End Property

Public Property Get ColorScheme() As ColorTypes
 ColorScheme = MyColorType
End Property

Public Property Let ColorScheme(ByVal NewValue As ColorTypes)
 MyColorType = NewValue
 SetColors
 Redraw 0, True
 PropertyChanged
End Property

Public Property Get ShowFocusRectangle() As Boolean
 ShowFocusRectangle = blnShowFocusRectangle
End Property

Public Property Let ShowFocusRectangle(ByVal NewValue As Boolean)
 blnShowFocusRectangle = NewValue
 Redraw lastStat, True
 PropertyChanged
End Property

Public Property Get MousePointer() As MousePointerConstants
 MousePointer = UserControl.MousePointer
End Property

Public Property Let MousePointer(ByVal newPointer As MousePointerConstants)
 UserControl.MousePointer = newPointer
 PropertyChanged
End Property

Public Property Get MouseIcon() As StdPicture
 Set MouseIcon = UserControl.MouseIcon
End Property

Public Property Set MouseIcon(ByVal newIcon As StdPicture)
 On Local Error Resume Next
 Set UserControl.MouseIcon = newIcon
 PropertyChanged
End Property

Public Property Get HandPointer() As Boolean
 HandPointer = useHand
End Property

Public Property Let HandPointer(ByVal newVal As Boolean)
 useHand = newVal
 If useHand Then
 Set UserControl.MouseIcon = LoadResPicture(101, 2)
 UserControl.MousePointer = 99
 Else
 Set UserControl.MouseIcon = Nothing
 UserControl.MousePointer = 1
 End If
 PropertyChanged
End Property

Public Property Get hwnd() As Long
 hwnd = UserControl.hwnd
End Property

Public Property Get SoftBevel() As Boolean
 SoftBevel = blnSoft
End Property

Public Property Let SoftBevel(ByVal NewValue As Boolean)
 blnSoft = NewValue
 SetColors
 Redraw lastStat, True
 PropertyChanged
End Property

Public Property Get PictureNormal() As StdPicture
 Set PictureNormal = picNormal
End Property

Public Property Set PictureNormal(ByVal newPic As StdPicture)
 Set picNormal = newPic
 CalcPicSize
 CalcTextRects
 Redraw lastStat, True
 PropertyChanged
End Property

Public Property Get PictureOver() As StdPicture
 Set PictureOver = picHover
End Property

Public Property Set PictureOver(ByVal newPic As StdPicture)
 Set picHover = newPic
 If blnIsOver Then
 Redraw lastStat, True
 End If
 PropertyChanged
End Property

Public Property Get PicturePosition() As PicPositions
 PicturePosition = PicPosition
End Property

Public Property Let PicturePosition(ByVal newPicPos As PicPositions)
 PicPosition = newPicPos
 PropertyChanged
 CalcTextRects
 Redraw lastStat, True
End Property

Public Property Get UseMaskColor() As Boolean
 UseMaskColor = useMask
End Property

Public Property Let UseMaskColor(ByVal NewValue As Boolean)
 useMask = NewValue
 If Not picNormal Is Nothing Then
 Redraw lastStat, True
 End If
 PropertyChanged
End Property

Public Property Get UseGreyscale() As Boolean
 UseGreyscale = useGrey
End Property

Public Property Let UseGreyscale(ByVal NewValue As Boolean)
 useGrey = NewValue
 If Not picNormal Is Nothing Then
 Redraw lastStat, True
 End If
 PropertyChanged
End Property

Public Property Get SpecialEffect() As fx
 SpecialEffect = SFX
End Property

Public Property Let SpecialEffect(ByVal NewValue As fx)
 SFX = NewValue
 Redraw lastStat, True
 PropertyChanged
End Property

Public Property Get CheckBoxBehaviour() As Boolean
 CheckBoxBehaviour = blnIsCheckbox
End Property

Public Property Let CheckBoxBehaviour(ByVal NewValue As Boolean)
 blnIsCheckbox = NewValue
 Redraw lastStat, True
End Property

Public Property Get Value() As Boolean
 Value = blnCheckBoxValue
End Property

Public Property Let Value(ByVal NewValue As Boolean)
 blnCheckBoxValue = NewValue
 If blnIsCheckbox Then
 Redraw 0, True
 End If
 PropertyChanged
End Property

Private Sub UserControl\_Resize()
 If Not blnInLoop Then
 GetClientRect UserControl.hwnd, rc3
 He = rc3.Bottom
 Wi = rc3.Right
 If MyButtonType \>= [Simple Flat] And MyButtonType 2) \* ShiftColorOXP(OXPb, &H80)
 End If
 DrawCaption 2
 DrawRectangle 0, 0, Wi, He, OXPb, True
 DrawFocusR
 Case ButtonTypes.Transparent
 BitBlt hDC, 0, 0, Wi, He, pDC, 0, 0, vbSrcCopy
 DrawCaption 2
 DrawFocusR
 Case ButtonTypes.[Oval Flat]
 DrawEllipse 0, 0, Wi, He, cDarkShadow, ShiftColor(cFace, -&H20)
 DrawCaption 2
 Case ButtonTypes.[KDE 2]
 DrawRectangle 1, 1, Wi, He, ShiftColor(cFace, -&H9)
 DrawRectangle 0, 0, Wi, He, ShiftColor(cShadow, -&H30), True
 DrawLine 2, He - 2, Wi - 2, He - 2, cHighLight
 DrawLine Wi - 2, 2, Wi - 2, He - 1, cHighLight
 DrawCaption 7
 DrawFocusR
 End Select
 DrawPictures 1
 End If
Else
 Select Case MyButtonType
 Case ButtonTypes.[Windows 16-bit]
 DrawCaption 3
 DrawFrame cHighLight, cShadow, cHighLight, cShadow, True
 DrawRectangle 0, 0, Wi, He, cDarkShadow, True
 Case ButtonTypes.[Windows 32-bit]
 DrawCaption 3
 DrawFrame cHighLight, cDarkShadow, cLight, cShadow, False
 Case ButtonTypes.[Windows XP]
 DrawRectangle 0, 0, Wi, He, ShiftColor(XPFace, -&H18, True)
 DrawCaption 5
 DrawRectangle 0, 0, Wi, He, ShiftColor(XPFace, -&H54, True), True
 mSetPixel 1, 1, ShiftColor(XPFace, -&H48, True)
 mSetPixel 1, He - 2, ShiftColor(XPFace, -&H48, True)
 mSetPixel Wi - 2, 1, ShiftColor(XPFace, -&H48, True)
 mSetPixel Wi - 2, He - 2, ShiftColor(XPFace, -&H48, True)
 Case ButtonTypes.Mac
 DrawRectangle 1, 1, Wi - 2, He - 2, cLight
 DrawCaption 3
 DrawRectangle 0, 0, Wi, He, cDarkShadow, True
 mSetPixel 1, 1, cDarkShadow
 mSetPixel 1, He - 2, cDarkShadow
 mSetPixel Wi - 2, 1, cDarkShadow
 mSetPixel Wi - 2, He - 2, cDarkShadow
 DrawLine 1, 2, 2, 0, cFace
 DrawLine 3, 2, Wi - 3, 2, cHighLight
 DrawLine 2, 2, 2, He - 3, cHighLight
 mSetPixel 3, 3, cHighLight
 DrawLine Wi - 3, 1, Wi - 3, He - 3, cFace
 DrawLine 1, He - 3, Wi - 3, He - 3, cFace
 mSetPixel Wi - 4, He - 4, cFace
 DrawLine Wi - 2, 2, Wi - 2, He - 2, cShadow
 DrawLine 2, He - 2, Wi - 2, He - 2, cShadow
 mSetPixel Wi - 3, He - 3, cShadow
 Case ButtonTypes.[Java metal]
 DrawCaption 4
 DrawRectangle 0, 0, Wi, He, cShadow, True
 Case ButtonTypes.[Netscape 6]
 DrawCaption 4
 DrawFrame ShiftColor(cLight, &H8), cShadow, ShiftColor(cLight, &H8), cShadow, False
 Case ButtonTypes.[Simple Flat], ButtonTypes.[Flat Highlight], ButtonTypes.[3D Hover], ButtonTypes.[Oval Flat]
 DrawCaption 3
 If MyButtonType = [Simple Flat] Then
 DrawFrame cHighLight, cShadow, 0, 0, False, True
 End If
 Case ButtonTypes.[Office XP]
 DrawCaption 4
 Case ButtonTypes.Transparent
 BitBlt hDC, 0, 0, Wi, He, pDC, 0, 0, vbSrcCopy
 DrawCaption 3
 Case ButtonTypes.[KDE 2]
 stepXP1 = 58 / He
 For i = 1 To He
 DrawLine 0, i, Wi, i, ShiftColor(cHighLight, -stepXP1 \* i)
 Next i
 DrawRectangle 0, 0, Wi, He, ShiftColor(cShadow, -&H32), True
 DrawRectangle 1, 1, Wi - 2, He - 2, ShiftColor(cFace, -&H9), True
 DrawRectangle 2, 2, Wi - 4, 2, cHighLight
 DrawRectangle 2, 4, 2, He - 6, cHighLight
 DrawCaption 6
 End Select
 DrawPictures 2
End If
End With
If blnIsOver And MyColorType = Custom Then
 BackC = tempCol
 SetColors
End If
End Sub

Private Sub DrawRectangle(ByVal X As Long, ByVal Y As Long, ByVal Width As Long, ByVal Height As Long, ByVal Color As Long, Optional OnlyBorder As Boolean = False)
Dim bRECT As RECT
Dim hBrush As Long
 bRECT.Left = X
 bRECT.Top = Y
 bRECT.Right = X + Width
 bRECT.Bottom = Y + Height
 hBrush = CreateSolidBrush(Color)
 If OnlyBorder Then
 FrameRect UserControl.hDC, bRECT, hBrush
 Else
 FillRect UserControl.hDC, bRECT, hBrush
 End If
 DeleteObject hBrush
End Sub

Private Sub DrawEllipse(ByVal X As Long, ByVal Y As Long, ByVal Width As Long, ByVal Height As Long, ByVal BorderColor As Long, ByVal FillColor As Long)
Dim pBrush As Long, pPen As Long
 pBrush = SelectObject(hDC, CreateSolidBrush(FillColor))
 pPen = SelectObject(hDC, CreatePen(PS\_SOLID, 2, BorderColor))
 Ellipse hDC, X, Y, X + Width, Y + Height
 DeleteObject SelectObject(hDC, pBrush)
 DeleteObject SelectObject(hDC, pPen)
End Sub

Private Sub DrawLine(ByVal X1 As Long, ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long, ByVal Color As Long)
Dim pt As POINTAPI
Dim oldPen As Long, hPen As Long
 With UserControl
 hPen = CreatePen(PS\_SOLID, 1, Color)
 oldPen = SelectObject(.hDC, hPen)
 MoveToEx .hDC, X1, Y1, pt
 LineTo .hDC, X2, Y2
 SelectObject .hDC, oldPen
 DeleteObject hPen
 End With
End Sub

Private Sub DrawFrame(ByVal ColHigh As Long, ByVal ColDark As Long, ByVal ColLight As Long, ByVal ColShadow As Long, ByVal ExtraOffset As Boolean, Optional ByVal Flat As Boolean = False)
Dim pt As POINTAPI
Dim frHe As Long, frWi As Long, frXtra As Long
 frHe = He - 1 + ExtraOffset: frWi = Wi - 1 + ExtraOffset: frXtra = Abs(ExtraOffset)
 With UserControl
 DeleteObject SelectObject(.hDC, CreatePen(PS\_SOLID, 1, ColHigh))
 MoveToEx .hDC, frXtra, frHe, pt
 LineTo .hDC, frXtra, frXtra
 LineTo .hDC, frWi, frXtra
 DeleteObject SelectObject(.hDC, CreatePen(PS\_SOLID, 1, ColDark))
 LineTo .hDC, frWi, frHe
 LineTo .hDC, frXtra - 1, frHe
 MoveToEx .hDC, frXtra + 1, frHe - 1, pt
 If Flat Then
 Exit Sub
 End If
 DeleteObject SelectObject(.hDC, CreatePen(PS\_SOLID, 1, ColLight))
 LineTo .hDC, frXtra + 1, frXtra + 1
 LineTo .hDC, frWi - 1, frXtra + 1
 DeleteObject SelectObject(.hDC, CreatePen(PS\_SOLID, 1, ColShadow))
 LineTo .hDC, frWi - 1, frHe - 1
 LineTo .hDC, frXtra, frHe - 1
 End With
End Sub

Private Sub mSetPixel(ByVal X As Long, ByVal Y As Long, ByVal Color As Long)
 SetPixel UserControl.hDC, X, Y, Color
End Sub

Private Sub DrawFocusR()
 If blnShowFocusRectangle And blnHasFocus Then
 SetTextColor UserControl.hDC, cText
 DrawFocusRect UserControl.hDC, rc3
 End If
End Sub

Private Sub SetColors()
If MyColorType = Custom Then
 cFace = ConvertFromSystemColor(BackC)
 cFaceO = ConvertFromSystemColor(BackO)
 cText = ConvertFromSystemColor(ForeC)
 cTextO = ConvertFromSystemColor(ForeO)
 cShadow = ShiftColor(cFace, -&H40)
 cLight = ShiftColor(cFace, &H1F)
 cHighLight = ShiftColor(cFace, &H2F)
 cDarkShadow = ShiftColor(cFace, -&HC0)
 OXPb = ShiftColor(cFace, -&H80)
 OXPf = cFace
ElseIf MyColorType = [Force Standard] Then
 cFace = &HC0C0C0
 cFaceO = cFace
 cShadow = &H808080
 cLight = &HDFDFDF
 cDarkShadow = &H0
 cHighLight = &HFFFFFF
 cText = &H0
 cTextO = cText
 OXPb = &H800000
 OXPf = &HD1ADAD
ElseIf MyColorType = [Use Container] Then
 cFace = GetBkColor(GetDC(GetParent(hwnd)))
 cFaceO = cFace
 cText = GetTextColor(GetDC(GetParent(hwnd)))
 cTextO = cText
 cShadow = ShiftColor(cFace, -&H40)
 cLight = ShiftColor(cFace, &H1F)
 cHighLight = ShiftColor(cFace, &H2F)
 cDarkShadow = ShiftColor(cFace, -&HC0)
 OXPb = GetSysColor(COLOR\_HIGHLIGHT)
 OXPf = ShiftColorOXP(OXPb)
Else
 cFace = GetSysColor(COLOR\_BTNFACE)
 cFaceO = cFace
 cShadow = GetSysColor(COLOR\_BTNSHADOW)
 cLight = GetSysColor(COLOR\_BTNLIGHT)
 cDarkShadow = GetSysColor(COLOR\_BTNDKSHADOW)
 cHighLight = GetSysColor(COLOR\_BTNHIGHLIGHT)
 cText = GetSysColor(COLOR\_BTNTEXT)
 cTextO = cText
 OXPb = GetSysColor(COLOR\_HIGHLIGHT)
 OXPf = ShiftColorOXP(OXPb)
End If
cMask = ConvertFromSystemColor(MaskC)
XPFace = ShiftColor(cFace, &H30, MyButtonType = [Windows XP])
End Sub

Private Sub MakeRegion()
Dim rgn1 As Long, rgn2 As Long
DeleteObject rgnNorm
rgnNorm = CreateRectRgn(0, 0, Wi, He)
rgn2 = CreateRectRgn(0, 0, 0, 0)
Select Case MyButtonType
 Case ButtonTypes.[Windows 16-bit], ButtonTypes.[Java metal], ButtonTypes.[KDE 2]
 rgn1 = CreateRectRgn(0, He, 1, He - 1)
 CombineRgn rgn2, rgnNorm, rgn1, RGN\_DIFF
 DeleteObject rgn1
 rgn1 = CreateRectRgn(Wi, 0, Wi - 1, 1)
 CombineRgn rgnNorm, rgn2, rgn1, RGN\_DIFF
 DeleteObject rgn1
 If MyButtonType ButtonTypes.[Java metal] Then
 rgn1 = CreateRectRgn(0, 0, 1, 1)
 CombineRgn rgn2, rgnNorm, rgn1, RGN\_DIFF
 DeleteObject rgn1
 rgn1 = CreateRectRgn(Wi, He, Wi - 1, He - 1)
 CombineRgn rgnNorm, rgn2, rgn1, RGN\_DIFF
 DeleteObject rgn1
 End If
 Case ButtonTypes.[Windows XP], ButtonTypes.Mac
 rgn1 = CreateRectRgn(0, 0, 2, 1)
 CombineRgn rgn2, rgnNorm, rgn1, RGN\_DIFF
 DeleteObject rgn1
 rgn1 = CreateRectRgn(0, He, 2, He - 1)
 CombineRgn rgnNorm, rgn2, rgn1, RGN\_DIFF
 DeleteObject rgn1
 rgn1 = CreateRectRgn(Wi, 0, Wi - 2, 1)
 CombineRgn rgn2, rgnNorm, rgn1, RGN\_DIFF
 DeleteObject rgn1
 rgn1 = CreateRectRgn(Wi, He, Wi - 2, He - 1)
 CombineRgn rgnNorm, rgn2, rgn1, RGN\_DIFF
 DeleteObject rgn1
 rgn1 = CreateRectRgn(0, 1, 1, 2)
 CombineRgn rgn2, rgnNorm, rgn1, RGN\_DIFF
 DeleteObject rgn1
 rgn1 = CreateRectRgn(0, He - 1, 1, He - 2)
 CombineRgn rgnNorm, rgn2, rgn1, RGN\_DIFF
 DeleteObject rgn1
 rgn1 = CreateRectRgn(Wi, 1, Wi - 1, 2)
 CombineRgn rgn2, rgnNorm, rgn1, RGN\_DIFF
 DeleteObject rgn1
 rgn1 = CreateRectRgn(Wi, He - 1, Wi - 1, He - 2)
 CombineRgn rgnNorm, rgn2, rgn1, RGN\_DIFF
 DeleteObject rgn1
 Case ButtonTypes.[Oval Flat]
 DeleteObject rgnNorm
 rgnNorm = CreateEllipticRgn(0, 0, Wi, He)
End Select

DeleteObject rgn2
End Sub

Private Sub SetAccessKeys()
Dim ampersandPos As Long
UserControl.AccessKeys = ""
If Len(elTex) \> 1 Then
 ampersandPos = InStr(1, elTex, "&", vbTextCompare)
 If (ampersandPos 0) Then
 If Mid$(elTex, ampersandPos + 1, 1) "&" Then
 UserControl.AccessKeys = LCase$(Mid$(elTex, ampersandPos + 1, 1))
 Else
 ampersandPos = InStr(ampersandPos + 2, elTex, "&", vbTextCompare)
 If Mid$(elTex, ampersandPos + 1, 1) "&" Then
 UserControl.AccessKeys = LCase$(Mid$(elTex, ampersandPos + 1, 1))
 End If
 End If
 End If
End If
End Sub

Private Function ShiftColor(ByVal Color As Long, ByVal Value As Long, Optional isXP As Boolean = False) As Long
Dim Red As Long, Blue As Long, Green As Long
If blnSoft Then
 Value = Value \ 2
End If
If Not isXP Then
 Blue = ((Color \ &H10000) Mod &H100) + Value
Else
 Blue = ((Color \ &H10000) Mod &H100)
 Blue = Blue + ((Blue \* Value) \ &HC0)
End If
Green = ((Color \ &H100) Mod &H100) + Value
Red = (Color And &HFF) + Value
If Value \> 0 Then
 If Red \> 255 Then
 Red = 255
 End If
 If Green \> 255 Then
 Green = 255
 End If
 If Blue \> 255 Then
 Blue = 255
 End If
ElseIf Value 255 Then
 Red = 255
 End If
 If Green \> 255 Then
 Green = 255
 End If
 If Blue \> 255 Then
 Blue = 255
 End If
 ShiftColorOXP = Red + 256& \* Green + 65536 \* Blue
End Function

Private Sub CalcTextRects()
 Select Case PicPosition
 Case PicPositions.cbLeft
 rc2.Left = 1 + picSZ.X
 rc2.Right = Wi - 2
 rc2.Top = 1
 rc2.Bottom = He - 2
 Case PicPositions.cbRight
 rc2.Left = 1
 rc2.Right = Wi - 2 - picSZ.X
 rc2.Top = 1
 rc2.Bottom = He - 2
 Case PicPositions.cbTop
 rc2.Left = 1
 rc2.Right = Wi - 2
 rc2.Top = 1 + picSZ.Y
 rc2.Bottom = He - 2
 Case PicPositions.cbBottom
 rc2.Left = 1
 rc2.Right = Wi - 2
 rc2.Top = 1
 rc2.Bottom = He - 2 - picSZ.Y
 Case PicPositions.cbBackground
 rc2.Left = 1
 rc2.Right = Wi - 2
 rc2.Top = 1
 rc2.Bottom = He - 2
 End Select
 DrawText UserControl.hDC, elTex, Len(elTex), rc2, DT\_CALCRECT Or DT\_WORDBREAK
 CopyRect rc, rc2: fc.X = rc.Right - rc.Left: fc.Y = rc.Bottom - rc.Top
 Select Case PicPosition
 Case PicPositions.cbLeft, PicPositions.cbTop
 OffsetRect rc, (Wi - rc.Right) \ 2, (He - rc.Bottom) \ 2
 Case PicPositions.cbRight
 OffsetRect rc, (Wi - rc.Right - picSZ.X - 4) \ 2, (He - rc.Bottom) \ 2
 Case PicPositions.cbBottom
 OffsetRect rc, (Wi - rc.Right) \ 2, (He - rc.Bottom - picSZ.Y - 4) \ 2
 Case PicPositions.cbBackground
 OffsetRect rc, (Wi - rc.Right) \ 2, (He - rc.Bottom) \ 2
 End Select
 CopyRect rc2, rc: OffsetRect rc2, 1, 1
 CalcPicPos
End Sub

Public Sub DisableRefresh()
 blnIsShown = False
End Sub

Public Sub Refresh()
 If MyButtonType = ButtonTypes.Transparent Then
 GetParentPic
 End If
 SetColors
 CalcTextRects
 blnIsShown = True
 Redraw lastStat, True
End Sub

Private Function ConvertFromSystemColor(ByVal theColor As Long) As Long
 OleTranslateColor theColor, 0, ConvertFromSystemColor
End Function

Private Sub DrawCaption(ByVal State As Byte)
 captOpt = State
 With UserControl
 Select Case State
 Case 0
 txtFX rc
 SetTextColor .hDC, cText
 Case 1
 txtFX rc
 SetTextColor .hDC, cTextO
 Case 2
 txtFX rc2
 If MyButtonType = Mac Then
 SetTextColor .hDC, cLight
 Else
 SetTextColor .hDC, cTextO
 End If
 DrawText .hDC, elTex, Len(elTex), rc2, DT\_CENTER
 Case 3
 SetTextColor .hDC, cHighLight
 DrawText .hDC, elTex, Len(elTex), rc2, DT\_CENTER
 SetTextColor .hDC, cShadow
 Case 4
 SetTextColor .hDC, cShadow
 Case 5
 SetTextColor .hDC, ShiftColor(XPFace, -&H68, True)
 Case 6
 SetTextColor .hDC, cHighLight
 DrawText .hDC, elTex, Len(elTex), rc2, DT\_CENTER
 SetTextColor .hDC, cFace
 Case 7
 SetTextColor .hDC, ShiftColor(cShadow, -&H32)
 DrawText .hDC, elTex, Len(elTex), rc2, DT\_CENTER
 SetTextColor .hDC, cHighLight
 End Select
 If State 2 Then
 DrawText .hDC, elTex, Len(elTex), rc, DT\_CENTER
 End If
 End With
End Sub

Private Sub DrawPictures(ByVal State As Byte)
If picNormal Is Nothing Then
 Exit Sub
End If
With UserControl
Select Case State
 Case 0
 If Not blnIsOver Then
 DoFX 0, picNormal
 TransBlt .hDC, picPT.X, picPT.Y, picSZ.X, picSZ.Y, picNormal, cMask, , , useGrey, (MyButtonType = [Office XP])
 Else
 If MyButtonType = [Office XP] Then
 DoFX -1, picNormal
 TransBlt .hDC, picPT.X + 1, picPT.Y + 1, picSZ.X, picSZ.Y, picNormal, cMask, cShadow
 TransBlt .hDC, picPT.X - 1, picPT.Y - 1, picSZ.X, picSZ.Y, picNormal, cMask
 Else
 If Not picHover Is Nothing Then
 DoFX 0, picHover
 TransBlt .hDC, picPT.X, picPT.Y, picSZ.X, picSZ.Y, picHover, cMask
 Else
 DoFX 0, picNormal
 TransBlt .hDC, picPT.X, picPT.Y, picSZ.X, picSZ.Y, picNormal, cMask
 End If
 End If
 End If
 Case 1
 If picHover Is Nothing Or MyButtonType = [Office XP] Then
 Select Case MyButtonType
 Case 5, 9
 DoFX 0, picNormal
 TransBlt .hDC, picPT.X, picPT.Y, picSZ.X, picSZ.Y, picNormal, cMask
 Case Else
 DoFX 1, picNormal
 TransBlt .hDC, picPT.X + 1, picPT.Y + 1, picSZ.X, picSZ.Y, picNormal, cMask
 End Select
 Else
 TransBlt .hDC, picPT.X + Abs(MyButtonType [Java metal]), picPT.Y + Abs(MyButtonType [Java metal]), picSZ.X, picSZ.Y, picHover, cMask
 End If
 Case 2
 Select Case MyButtonType
 Case ButtonTypes.[Java metal], ButtonTypes.[Netscape 6], ButtonTypes.[Office XP]
 TransBlt .hDC, picPT.X, picPT.Y, picSZ.X, picSZ.Y, picNormal, cMask, Abs(MyButtonType = [Office XP]) \* ShiftColor(cShadow, &HD) + Abs(MyButtonType [Office XP]) \* cShadow, True
 Case ButtonTypes.[Windows XP]
 TransBlt .hDC, picPT.X + 1, picPT.Y + 1, picSZ.X, picSZ.Y, picNormal, cMask, , , True
 Case Else
 TransBlt .hDC, picPT.X + 1, picPT.Y + 1, picSZ.X, picSZ.Y, picNormal, cMask, cHighLight, True
 TransBlt .hDC, picPT.X, picPT.Y, picSZ.X, picSZ.Y, picNormal, cMask, cShadow, True
 End Select
End Select
End With
If PicPosition = cbBackground Then
 DrawCaption captOpt
End If
End Sub

Private Sub DoFX(ByVal offset As Long, ByVal thePic As StdPicture)
 If SFX \> cbNone Then
 Dim curFace As Long
 If MyButtonType = [Windows XP] Then
 curFace = XPFace
 Else
 If offset = -1 And MyColorType Custom Then
 curFace = OXPf
 Else
 curFace = cFace
 End If
 End If
 TransBlt UserControl.hDC, picPT.X + 1 + offset, picPT.Y + 1 + offset, picSZ.X, picSZ.Y, thePic, cMask, ShiftColor(curFace, Abs(SFX = cbEngraved) \* FXDEPTH + (SFX cbEngraved) \* FXDEPTH)
 If SFX cbEngraved) \* FXDEPTH + (SFX = cbEngraved) \* FXDEPTH)
 End If
 End If
End Sub

Private Sub txtFX(ByRef theRect As RECT)
Dim curFace As Long
Dim tempR As RECT
 If SFX \> cbNone Then
 With UserControl
 CopyRect tempR, theRect
 OffsetRect tempR, 1, 1
 Select Case MyButtonType
 Case ButtonTypes.[Windows 16-bit], ButtonTypes.Mac, ButtonTypes.[KDE 2]
 curFace = XPFace
 Case Else
 If lastStat = 0 And blnIsOver And MyColorType Custom And MyButtonType = [Office XP] Then
 curFace = OXPf
 Else
 curFace = cFace
 End If
 End Select
 SetTextColor .hDC, ShiftColor(curFace, Abs(SFX = cbEngraved) \* FXDEPTH + (SFX cbEngraved) \* FXDEPTH)
 DrawText .hDC, elTex, Len(elTex), tempR, DT\_CENTER
 If SFX cbEngraved) \* FXDEPTH + (SFX = cbEngraved) \* FXDEPTH)
 DrawText .hDC, elTex, Len(elTex), tempR, DT\_CENTER
 End If
 End With
 End If
End Sub

Private Sub CalcPicSize()
 If Not picNormal Is Nothing Then
 picSZ.X = UserControl.ScaleX(picNormal.Width, 8, UserControl.ScaleMode)
 picSZ.Y = UserControl.ScaleY(picNormal.Height, 8, UserControl.ScaleMode)
 Else
 picSZ.X = 0
 picSZ.Y = 0
 End If
End Sub

Private Sub CalcPicPos()
If picNormal Is Nothing And picHover Is Nothing Then Exit Sub
 If (Trim(elTex) "") And (PicPosition 4) Then
 Select Case PicPosition
 Case PicPositions.cbLeft
 picPT.X = rc.Left - picSZ.X - 4
 picPT.Y = (He - picSZ.Y) \ 2
 Case PicPositions.cbRight
 picPT.X = rc.Right + 4
 picPT.Y = (He - picSZ.Y) \ 2
 Case PicPositions.cbTop
 picPT.X = (Wi - picSZ.X) \ 2
 picPT.Y = rc.Top - picSZ.Y - 2
 Case PicPositions.cbBottom
 picPT.X = (Wi - picSZ.X) \ 2
 picPT.Y = rc.Bottom + 2
 End Select
 Else
 picPT.X = (Wi - picSZ.X) \ 2
 picPT.Y = (He - picSZ.Y) \ 2
 End If
End Sub

Private Sub TransBlt(ByVal dstDC As Long, ByVal DstX As Long, ByVal DstY As Long, ByVal DstW As Long, ByVal DstH As Long, ByVal SrcPic As StdPicture, Optional ByVal TransColor As Long = -1, Optional ByVal BrushColor As Long = -1, Optional ByVal MonoMask As Boolean = False, Optional ByVal isGreyscale As Boolean = False, Optional ByVal XPBlend As Boolean = False)
Dim B As Long, h As Long, f As Long, i As Long, newW As Long
Dim TmpDC As Long, TmpBmp As Long, TmpObj As Long
Dim Sr2DC As Long, Sr2Bmp As Long, Sr2Obj As Long
Dim Data1() As RGBTRIPLE, Data2() As RGBTRIPLE
Dim Info As BITMAPINFO, BrushRGB As RGBTRIPLE, gCol As Long
Dim SrcDC As Long, tObj As Long, ttt As Long
If DstW = 0 Or DstH = 0 Then Exit Sub
 SrcDC = CreateCompatibleDC(hDC)
 If DstW 0 Then
 BrushRGB.rgbBlue = (BrushColor \ &H10000) Mod &H100
 BrushRGB.rgbGreen = (BrushColor \ &H100) Mod &H100
 BrushRGB.rgbRed = BrushColor And &HFF
 End If
 If Not useMask Then TransColor = -1
 newW = DstW - 1
 For h = 0 To DstH - 1
 f = h \* DstW
 For B = 0 To newW
 i = f + B
 If (CLng(Data2(i).rgbRed) + 256& \* Data2(i).rgbGreen + 65536 \* Data2(i).rgbBlue) TransColor Then
 With Data1(i)
 If BrushColor \> -1 Then
 If MonoMask Then
 If (CLng(Data2(i).rgbRed) + Data2(i).rgbGreen + Data2(i).rgbBlue) 

MfG Alex