Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 43
  1. #16
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860
    Why don't you just reupload the exe, instead of this install shit

  2. #17
    Left'Nut's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    75
    Reputation
    10
    Thanks
    2,423
    My Mood
    Relaxed
    Because when I do that I will get an error. Tried it on my laptop. And got an error instead of this bullshit install. Without it, the injector wouldn't start.

    Reason : Because of the GUI, I used DotNetBar Crappy theme and when i saved it, tryed to put the .exe on my desktop from projects and it did not start...

    But if you have a way to fix that... Be my guest.
    Honesty Counts
    →MPGH←

    Learning C++

    Status:[---------2%---------]


    Might not be as active because of school =(

    [IMG]https://i1104.photobucke*****m/albums/h330/turkeyyum/sy8n7t.gif[/IMG]

  3. #18
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860
    Fix: Don't use DotNetBar?? lol.

  4. #19
    Left'Nut's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    75
    Reputation
    10
    Thanks
    2,423
    My Mood
    Relaxed
    Then please explain where I can get a wonderful theme.
    Because I HAVE NO CLUE...

    And I cannot create my own because I lost my CS5 skills. DUuuhhh..
    Honesty Counts
    →MPGH←

    Learning C++

    Status:[---------2%---------]


    Might not be as active because of school =(

    [IMG]https://i1104.photobucke*****m/albums/h330/turkeyyum/sy8n7t.gif[/IMG]

  5. #20
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860
    If you like the theme on my loader I just posted, I can give you my full source for it.

  6. #21
    Left'Nut's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    75
    Reputation
    10
    Thanks
    2,423
    My Mood
    Relaxed
    The theme on your loader... I love it. =)
    Honesty Counts
    →MPGH←

    Learning C++

    Status:[---------2%---------]


    Might not be as active because of school =(

    [IMG]https://i1104.photobucke*****m/albums/h330/turkeyyum/sy8n7t.gif[/IMG]

  7. #22
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860
    Quote Originally Posted by Left'Nut View Post
    The theme on your loader... I love it. =)
    Right Click your project and go to Add > Class



    Then copy all of the following code and paste it in.
    Then Right Click > Build Project.
    The go into your ToolBox, and drag my custom controls onto your form.
    Code:
    'Creator: FUKO(JAMAL)
    'Site: MPGH.NET
    'Name: ZynxTheme
    'Credits: AeonHack
    Imports System.Drawing.Drawing2D
    Imports System.ComponentModel
    Imports System.Runtime.InteropServices
    
    MustInherit Class Theme
        Inherits ContainerControl
    
    #Region " Initialization "
    
        Protected G As Graphics
        Sub New()
            SetStyle(DirectCast(139270, ControlStyles), True)
        End Sub
    
        Private ParentIsForm As Boolean
        Protected Overrides Sub OnHandleCreated(ByVal e As EventArgs)
            Dock = DockStyle.Fill
            ParentIsForm = TypeOf Parent Is Form
            If ParentIsForm Then
                If Not _TransparencyKey = Color.Empty Then ParentForm.TransparencyKey = _TransparencyKey
                ParentForm.FormBorderStyle = FormBorderStyle.None
            End If
            MyBase.OnHandleCreated(e)
        End Sub
    
        Overrides Property Text As String
            Get
                Return MyBase.Text
            End Get
            Set(ByVal v As String)
                MyBase.Text = v
                Invalidate()
            End Set
        End Property
    #End Region
    
    #Region " Sizing and Movement "
    
        Private _Resizable As Boolean = True
        Property Resizable() As Boolean
            Get
                Return _Resizable
            End Get
            Set(ByVal value As Boolean)
                _Resizable = value
            End Set
        End Property
    
        Private _MoveHeight As Integer = 24
        Property MoveHeight() As Integer
            Get
                Return _MoveHeight
            End Get
            Set(ByVal v As Integer)
                _MoveHeight = v
                Header = New Rectangle(7, 7, Width - 14, _MoveHeight - 7)
            End Set
        End Property
    
        Private Flag As IntPtr
        Protected Overrides Sub OnMouseDown(ByVal e As MouseEventArgs)
            If Not e.Button = MouseButtons.Left Then Return
            If ParentIsForm Then If ParentForm.WindowState = FormWindowState.Maximized Then Return
    
            If Header.Contains(e.Location) Then
                Flag = New IntPtr(2)
            ElseIf Current.Position = 0 Or Not _Resizable Then
                Return
            Else
                Flag = New IntPtr(Current.Position)
            End If
    
            Capture = False
            DefWndProc(Message.Create(Parent.Handle, 161, Flag, Nothing))
    
            MyBase.OnMouseDown(e)
        End Sub
    
        Private Structure Pointer
            ReadOnly Cursor As Cursor, Position As Byte
            Sub New(ByVal c As Cursor, ByVal p As Byte)
                Cursor = c
                Position = p
            End Sub
        End Structure
    
        Private F1, F2, F3, F4 As Boolean, PTC As Point
        Private Function GetPointer() As Pointer
            PTC = PointToClient(MousePosition)
            F1 = PTC.X < 7
            F2 = PTC.X > Width - 7
            F3 = PTC.Y < 7
            F4 = PTC.Y > Height - 7
    
            If F1 And F3 Then Return New Pointer(Cursors.SizeNWSE, 13)
            If F1 And F4 Then Return New Pointer(Cursors.SizeNESW, 16)
            If F2 And F3 Then Return New Pointer(Cursors.SizeNESW, 14)
            If F2 And F4 Then Return New Pointer(Cursors.SizeNWSE, 17)
            If F1 Then Return New Pointer(Cursors.SizeWE, 10)
            If F2 Then Return New Pointer(Cursors.SizeWE, 11)
            If F3 Then Return New Pointer(Cursors.SizeNS, 12)
            If F4 Then Return New Pointer(Cursors.SizeNS, 15)
            Return New Pointer(Cursors.Default, 0)
        End Function
    
        Private Current, Pending As Pointer
        Private Sub SetCurrent()
            Pending = GetPointer()
            If Current.Position = Pending.Position Then Return
            Current = GetPointer()
            Cursor = Current.Cursor
        End Sub
    
        Protected Overrides Sub OnMouseMove(ByVal e As MouseEventArgs)
            If _Resizable Then SetCurrent()
            MyBase.OnMouseMove(e)
        End Sub
    
        Protected Header As Rectangle
        Protected Overrides Sub OnSizeChanged(ByVal e As EventArgs)
            If Width = 0 OrElse Height = 0 Then Return
            Header = New Rectangle(7, 7, Width - 14, _MoveHeight - 7)
            Invalidate()
            MyBase.OnSizeChanged(e)
        End Sub
    
    #End Region
    
    #Region " Convienence "
    
        MustOverride Sub PaintHook()
        Protected NotOverridable Overrides Sub OnPaint(ByVal e As PaintEventArgs)
            If Width = 0 OrElse Height = 0 Then Return
            G = e.Graphics
            PaintHook()
        End Sub
    
        Private _TransparencyKey As Color
        Property TransparencyKey() As Color
            Get
                Return _TransparencyKey
            End Get
            Set(ByVal v As Color)
                _TransparencyKey = v
                Invalidate()
            End Set
        End Property
    
        Private _Image As Image
        Property Image() As Image
            Get
                Return _Image
            End Get
            Set(ByVal value As Image)
                _Image = value
                Invalidate()
            End Set
        End Property
        ReadOnly Property ImageWidth() As Integer
            Get
                If _Image Is Nothing Then Return 0
                Return _Image.Width
            End Get
        End Property
    
        Private _Size As Size
        Private _Rectangle As Rectangle
        Private _Gradient As LinearGradientBrush
        Private _Brush As SolidBrush
    
        Protected Sub DrawCorners(ByVal c As Color, ByVal rect As Rectangle)
            _Brush = New SolidBrush(c)
            G.FillRectangle(_Brush, rect.X, rect.Y, 1, 1)
            G.FillRectangle(_Brush, rect.X + (rect.Width - 1), rect.Y, 1, 1)
            G.FillRectangle(_Brush, rect.X, rect.Y + (rect.Height - 1), 1, 1)
            G.FillRectangle(_Brush, rect.X + (rect.Width - 1), rect.Y + (rect.Height - 1), 1, 1)
        End Sub
    
        Protected Sub DrawBorders(ByVal p1 As Pen, ByVal p2 As Pen, ByVal rect As Rectangle)
            G.DrawRectangle(p1, rect.X, rect.Y, rect.Width - 1, rect.Height - 1)
            G.DrawRectangle(p2, rect.X + 1, rect.Y + 1, rect.Width - 3, rect.Height - 3)
        End Sub
    
        Protected Sub DrawText(ByVal a As HorizontalAlignment, ByVal c As Color, ByVal x As Integer)
            DrawText(a, c, x, 0)
        End Sub
        Protected Sub DrawText(ByVal a As HorizontalAlignment, ByVal c As Color, ByVal x As Integer, ByVal y As Integer)
            If String.IsNullOrEmpty(Text) Then Return
            _Size = G.MeasureString(Text, Font).ToSize
            _Brush = New SolidBrush(c)
    
            Select Case a
                Case HorizontalAlignment.Left
                    G.DrawString(Text, Font, _Brush, x, _MoveHeight \ 2 - _Size.Height \ 2 + y)
                Case HorizontalAlignment.Right
                    G.DrawString(Text, Font, _Brush, Width - _Size.Width - x, _MoveHeight \ 2 - _Size.Height \ 2 + y)
                Case HorizontalAlignment.Center
                    G.DrawString(Text, Font, _Brush, Width \ 2 - _Size.Width \ 2 + x, _MoveHeight \ 2 - _Size.Height \ 2 + y)
            End Select
        End Sub
    
        Protected Sub DrawIcon(ByVal a As HorizontalAlignment, ByVal x As Integer)
            DrawIcon(a, x, 0)
        End Sub
        Protected Sub DrawIcon(ByVal a As HorizontalAlignment, ByVal x As Integer, ByVal y As Integer)
            If _Image Is Nothing Then Return
            Select Case a
                Case HorizontalAlignment.Left
                    G.DrawImage(_Image, x, _MoveHeight \ 2 - _Image.Height \ 2 + y)
                Case HorizontalAlignment.Right
                    G.DrawImage(_Image, Width - _Image.Width - x, _MoveHeight \ 2 - _Image.Height \ 2 + y)
                Case HorizontalAlignment.Center
                    G.DrawImage(_Image, Width \ 2 - _Image.Width \ 2, _MoveHeight \ 2 - _Image.Height \ 2)
            End Select
        End Sub
    
        Protected Sub DrawGradient(ByVal c1 As Color, ByVal c2 As Color, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height As Integer, ByVal angle As Single)
            _Rectangle = New Rectangle(x, y, width, height)
            _Gradient = New LinearGradientBrush(_Rectangle, c1, c2, angle)
            G.FillRectangle(_Gradient, _Rectangle)
        End Sub
    
    #End Region
    
    End Class
    MustInherit Class ThemeControl
        Inherits Control
    
    #Region " Initialization "
    
        Protected G As Graphics, B As Bitmap
        Sub New()
            SetStyle(DirectCast(139270, ControlStyles), True)
            B = New Bitmap(1, 1)
            G = Graphics.FromImage(B)
        End Sub
    
        Sub AllowTransparent()
            SetStyle(ControlStyles.Opaque, False)
            SetStyle(ControlStyles.SupportsTransparentBackColor, True)
        End Sub
    
        Overrides Property Text As String
            Get
                Return MyBase.Text
            End Get
            Set(ByVal v As String)
                MyBase.Text = v
                Invalidate()
            End Set
        End Property
    #End Region
    
    #Region " Mouse Handling "
    
        Protected Enum State As Byte
            MouseNone = 0
            MouseOver = 1
            MouseDown = 2
        End Enum
    
        Protected MouseState As State
        Protected Overrides Sub OnMouseLeave(ByVal e As EventArgs)
            ChangeMouseState(State.MouseNone)
            MyBase.OnMouseLeave(e)
        End Sub
        Protected Overrides Sub OnMouseEnter(ByVal e As EventArgs)
            ChangeMouseState(State.MouseOver)
            MyBase.OnMouseEnter(e)
        End Sub
        Protected Overrides Sub OnMouseUp(ByVal e As MouseEventArgs)
            ChangeMouseState(State.MouseOver)
            MyBase.OnMouseUp(e)
        End Sub
        Protected Overrides Sub OnMouseDown(ByVal e As MouseEventArgs)
            If e.Button = MouseButtons.Left Then ChangeMouseState(State.MouseDown)
            MyBase.OnMouseDown(e)
        End Sub
    
        Private Sub ChangeMouseState(ByVal e As State)
            MouseState = e
            Invalidate()
        End Sub
    
    #End Region
    
    #Region " Convienence "
    
        MustOverride Sub PaintHook()
        Protected NotOverridable Overrides Sub OnPaint(ByVal e As PaintEventArgs)
            If Width = 0 OrElse Height = 0 Then Return
            PaintHook()
            e.Graphics.DrawImage(B, 0, 0)
        End Sub
    
        Protected Overrides Sub OnSizeChanged(ByVal e As EventArgs)
            If Not Width = 0 AndAlso Not Height = 0 Then
                B = New Bitmap(Width, Height)
                G = Graphics.FromImage(B)
                Invalidate()
            End If
            MyBase.OnSizeChanged(e)
        End Sub
    
        Private _NoRounding As Boolean
        Property NoRounding() As Boolean
            Get
                Return _NoRounding
            End Get
            Set(ByVal v As Boolean)
                _NoRounding = v
                Invalidate()
            End Set
        End Property
    
        Private _Image As Image
        Property Image() As Image
            Get
                Return _Image
            End Get
            Set(ByVal value As Image)
                _Image = value
                Invalidate()
            End Set
        End Property
        ReadOnly Property ImageWidth() As Integer
            Get
                If _Image Is Nothing Then Return 0
                Return _Image.Width
            End Get
        End Property
        ReadOnly Property ImageTop() As Integer
            Get
                If _Image Is Nothing Then Return 0
                Return Height \ 2 - _Image.Height \ 2
            End Get
        End Property
    
        Private _Size As Size
        Private _Rectangle As Rectangle
        Private _Gradient As LinearGradientBrush
        Private _Brush As SolidBrush
    
        Protected Sub DrawCorners(ByVal c As Color, ByVal rect As Rectangle)
            If _NoRounding Then Return
    
            B.SetPixel(rect.X, rect.Y, c)
            B.SetPixel(rect.X + (rect.Width - 1), rect.Y, c)
            B.SetPixel(rect.X, rect.Y + (rect.Height - 1), c)
            B.SetPixel(rect.X + (rect.Width - 1), rect.Y + (rect.Height - 1), c)
        End Sub
    
        Protected Sub DrawBorders(ByVal p1 As Pen, ByVal p2 As Pen, ByVal rect As Rectangle)
            G.DrawRectangle(p1, rect.X, rect.Y, rect.Width - 1, rect.Height - 1)
            G.DrawRectangle(p2, rect.X + 1, rect.Y + 1, rect.Width - 3, rect.Height - 3)
        End Sub
    
        Protected Sub DrawText(ByVal a As HorizontalAlignment, ByVal c As Color, ByVal x As Integer)
            DrawText(a, c, x, 0)
        End Sub
        Protected Sub DrawText(ByVal a As HorizontalAlignment, ByVal c As Color, ByVal x As Integer, ByVal y As Integer)
            If String.IsNullOrEmpty(Text) Then Return
            _Size = G.MeasureString(Text, Font).ToSize
            _Brush = New SolidBrush(c)
    
            Select Case a
                Case HorizontalAlignment.Left
                    G.DrawString(Text, Font, _Brush, x, Height \ 2 - _Size.Height \ 2 + y)
                Case HorizontalAlignment.Right
                    G.DrawString(Text, Font, _Brush, Width - _Size.Width - x, Height \ 2 - _Size.Height \ 2 + y)
                Case HorizontalAlignment.Center
                    G.DrawString(Text, Font, _Brush, Width \ 2 - _Size.Width \ 2 + x, Height \ 2 - _Size.Height \ 2 + y)
            End Select
        End Sub
    
        Protected Sub DrawIcon(ByVal a As HorizontalAlignment, ByVal x As Integer)
            DrawIcon(a, x, 0)
        End Sub
        Protected Sub DrawIcon(ByVal a As HorizontalAlignment, ByVal x As Integer, ByVal y As Integer)
            If _Image Is Nothing Then Return
            Select Case a
                Case HorizontalAlignment.Left
                    G.DrawImage(_Image, x, Height \ 2 - _Image.Height \ 2 + y)
                Case HorizontalAlignment.Right
                    G.DrawImage(_Image, Width - _Image.Width - x, Height \ 2 - _Image.Height \ 2 + y)
                Case HorizontalAlignment.Center
                    G.DrawImage(_Image, Width \ 2 - _Image.Width \ 2, Height \ 2 - _Image.Height \ 2)
            End Select
        End Sub
    
        Protected Sub DrawGradient(ByVal c1 As Color, ByVal c2 As Color, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height As Integer, ByVal angle As Single)
            _Rectangle = New Rectangle(x, y, width, height)
            _Gradient = New LinearGradientBrush(_Rectangle, c1, c2, angle)
            G.FillRectangle(_Gradient, _Rectangle)
        End Sub
    #End Region
    
    End Class
    MustInherit Class ThemeContainerControl
        Inherits ContainerControl
    
    #Region " Initialization "
    
        Protected G As Graphics, B As Bitmap
        Sub New()
            SetStyle(DirectCast(139270, ControlStyles), True)
            B = New Bitmap(1, 1)
            G = Graphics.FromImage(B)
        End Sub
    
        Sub AllowTransparent()
            SetStyle(ControlStyles.Opaque, False)
            SetStyle(ControlStyles.SupportsTransparentBackColor, True)
        End Sub
    
    #End Region
    
    #Region " Convienence "
    
        MustOverride Sub PaintHook()
        Protected NotOverridable Overrides Sub OnPaint(ByVal e As PaintEventArgs)
            If Width = 0 OrElse Height = 0 Then Return
            PaintHook()
            e.Graphics.DrawImage(B, 0, 0)
        End Sub
    
        Protected Overrides Sub OnSizeChanged(ByVal e As EventArgs)
            If Not Width = 0 AndAlso Not Height = 0 Then
                B = New Bitmap(Width, Height)
                G = Graphics.FromImage(B)
                Invalidate()
            End If
            MyBase.OnSizeChanged(e)
        End Sub
    
        Private _NoRounding As Boolean
        Property NoRounding() As Boolean
            Get
                Return _NoRounding
            End Get
            Set(ByVal v As Boolean)
                _NoRounding = v
                Invalidate()
            End Set
        End Property
    
        Private _Rectangle As Rectangle
        Private _Gradient As LinearGradientBrush
    
        Protected Sub DrawCorners(ByVal c As Color, ByVal rect As Rectangle)
            If _NoRounding Then Return
            B.SetPixel(rect.X, rect.Y, c)
            B.SetPixel(rect.X + (rect.Width - 1), rect.Y, c)
            B.SetPixel(rect.X, rect.Y + (rect.Height - 1), c)
            B.SetPixel(rect.X + (rect.Width - 1), rect.Y + (rect.Height - 1), c)
        End Sub
    
        Protected Sub DrawBorders(ByVal p1 As Pen, ByVal p2 As Pen, ByVal rect As Rectangle)
            G.DrawRectangle(p1, rect.X, rect.Y, rect.Width - 1, rect.Height - 1)
            G.DrawRectangle(p2, rect.X + 1, rect.Y + 1, rect.Width - 3, rect.Height - 3)
        End Sub
    
        Protected Sub DrawGradient(ByVal c1 As Color, ByVal c2 As Color, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height As Integer, ByVal angle As Single)
            _Rectangle = New Rectangle(x, y, width, height)
            _Gradient = New LinearGradientBrush(_Rectangle, c1, c2, angle)
            G.FillRectangle(_Gradient, _Rectangle)
        End Sub
    #End Region
    
    End Class
    Class ZynxTheme
        Inherits Theme
        Sub New()
            Me.Resizable = False
        End Sub
        Public Overrides Sub PaintHook()
    
            G.Clear(Color.Black)
    
            DrawBorders(Pens.AliceBlue, Pens.Black, ClientRectangle)
            DrawCorners(Color.Black, ClientRectangle)
    
    
            For I As Integer = 0 To Width + 17 Step 6
                G.DrawLine(Pens.AliceBlue, I, 25, I - 17, 40)
                G.DrawLine(Pens.AliceBlue, I, 25, I - 16, 40)
            Next
    
            G.DrawLine(Pens.AliceBlue, 0, 24, Width, 24)
            G.DrawLine(Pens.Black, 0, 25, Width, 25)
            G.DrawLine(Pens.Black, 0, 40, Width, 40)
            G.DrawLine(Pens.AliceBlue, 0, 41, Width, 41)
            DrawText(HorizontalAlignment.Left, Color.AliceBlue, 0)
        End Sub
    End Class
    Class ZynxButton
        Inherits ThemeControl
    
        Public Overrides Sub PaintHook()
    
            Select Case MouseState
    
                Case State.MouseDown
                    DrawGradient(Color.Black, Color.DarkGray, 0, 0, Width - 3, Height - 3, 90S)
                    DrawBorders(Pens.Black, Pens.AliceBlue, ClientRectangle)
                    DrawCorners(Color.Black, ClientRectangle)
                    DrawText(HorizontalAlignment.Center, Color.AliceBlue, 0)
                Case State.MouseNone
                    DrawGradient(Color.Black, Color.DarkGray, 0, 0, Width, Height, 90S)
                    DrawBorders(Pens.Black, Pens.AliceBlue, ClientRectangle)
                    DrawCorners(Color.Black, ClientRectangle)
                    DrawText(HorizontalAlignment.Center, Color.Black, 0)
                Case State.MouseOver
                    DrawGradient(Color.Black, Color.DarkGray, 0, 0, Width - 1, Height - 1, 90S)
                    DrawBorders(Pens.Black, Pens.AliceBlue, ClientRectangle)
                    DrawCorners(Color.Black, ClientRectangle)
                    DrawText(HorizontalAlignment.Center, Color.Black, 0)
            End Select
    
        End Sub
    End Class
    Class ZynxProgressBar
        Inherits ThemeControl
        Private _Maximum As Integer
        Public Property Maximum() As Integer
            Get
                Return _Maximum
            End Get
            Set(ByVal v As Integer)
                If v < 1 Then v = 1
                If v < _Value Then _Value = v
                _Maximum = v
                Invalidate()
            End Set
        End Property
        Private _Value As Integer
        Public Property Value() As Integer
            Get
                Return _Value
            End Get
            Set(ByVal v As Integer)
                If v > _Maximum Then v = _Maximum
                Maximum = 100
                _Value = v
                Invalidate()
            End Set
        End Property
        Overrides Sub PaintHook()
            G.Clear(Color.Black)
    
            Select Case _Value
                Case Is > 2
                    DrawGradient(Color.Black, Color.AliceBlue, 3, 3, CInt(_Value / _Maximum * Width) - 6, Height - 6, 90S)
                    DrawGradient(Color.AliceBlue, Color.Black, 4, 4, CInt(_Value / _Maximum * Width) - 8, Height - 8, 90S)
                Case Is > 0
                    DrawGradient(Color.AliceBlue, Color.Black, 3, 3, CInt(_Value / _Maximum * Width), Height - 6, 90S)
                    DrawGradient(Color.Black, Color.AliceBlue, 4, 4, CInt(_Value / _Maximum * Width) - 2, Height - 8, 90S)
            End Select
    
    
            G.DrawRectangle(Pens.AliceBlue, 0, 0, Width - 1, Height - 1)
            G.DrawRectangle(Pens.Black, 1, 1, Width - 3, Height - 3)
        End Sub
    End Class
    Class ZynxTopButton
        Inherits ThemeControl
        Sub New()
            Size = New Size(11, 5)
        End Sub
        Overrides Sub PaintHook()
    
            Select Case MouseState
    
                Case State.MouseDown
                    DrawGradient(Color.Black, Color.DarkGray, 0, 0, Width - 10, Height - 5, 90S)
                    DrawBorders(Pens.Black, Pens.AliceBlue, ClientRectangle)
                    DrawCorners(Color.Black, ClientRectangle)
                    DrawText(HorizontalAlignment.Center, Color.AliceBlue, 0)
                Case State.MouseNone
                    DrawGradient(Color.Black, Color.DarkGray, 0, 0, Width, Height, 90S)
                    DrawBorders(Pens.Black, Pens.AliceBlue, ClientRectangle)
                    DrawCorners(Color.Black, ClientRectangle)
                    DrawText(HorizontalAlignment.Center, Color.AliceBlue, 0)
                Case State.MouseOver
                    DrawGradient(Color.Black, Color.DarkGray, 0, 0, Width - 1, Height - 1, 90S)
                    DrawBorders(Pens.Black, Pens.AliceBlue, ClientRectangle)
                    DrawCorners(Color.Black, ClientRectangle)
                    DrawText(HorizontalAlignment.Center, Color.AliceBlue, 0)
            End Select
    
        End Sub
    End Class
    Just add me in the credits if you use it.
    Last edited by FUKO; 08-30-2011 at 02:59 AM.

  8. #23
    Left'Nut's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    75
    Reputation
    10
    Thanks
    2,423
    My Mood
    Relaxed
    Bro, Your in my credits. And will remain on my credits.
    Because I don't leech. And I respect everyone here.
    Your in my credits 1 = your module
    your in my credits 2 = this theme
    Honesty Counts
    →MPGH←

    Learning C++

    Status:[---------2%---------]


    Might not be as active because of school =(

    [IMG]https://i1104.photobucke*****m/albums/h330/turkeyyum/sy8n7t.gif[/IMG]

  9. The Following User Says Thank You to Left'Nut For This Useful Post:

    FUKO (08-30-2011)

  10. #24
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Better using CType() instead of DirectCast() imo. Ben you wrote that?
    Last edited by FUKO; 08-30-2011 at 03:46 AM.

  11. #25
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860
    Quote Originally Posted by Elio View Post


    Better using CType() instead of DirectCast() imo. Ben you wrote that?
    Used AeonHacks theme base, but drew everything myself.

  12. #26
    Nikolai001's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    0
    thx for sharing

  13. #27
    c4eu's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Czech Republic
    Posts
    85
    Reputation
    10
    Thanks
    36
    My Mood
    Aggressive
    Doesn Inject for me Win XP

  14. #28
    Johnanon101's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Australia
    Posts
    44
    Reputation
    10
    Thanks
    6
    um, what program was used to make this.

  15. #29
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860
    Quote Originally Posted by Johnanon101 View Post
    um, what program was used to make this.
    Visual Basic .

  16. #30
    Ryuesi's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Right here.
    Posts
    7,339
    Reputation
    413
    Thanks
    2,397
    My Mood
    Relaxed
    Amazing , Great Job
    Keep it up





    Contributor Since 24-11-2011 ~ 26-12-2011
    VM / PM




Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [Release] MPGH Multi DLL Injector S
    By Left'Nut in forum Piercing Blow Tools
    Replies: 33
    Last Post: 12-06-2015, 11:15 AM
  2. [Release] MPGH Multi DLL Injector S
    By Left'Nut in forum CrossFire Spammers, Injectors and Multi Tools
    Replies: 1
    Last Post: 09-12-2011, 06:09 AM
  3. [Release] MPGH Multi DLL Injector
    By Left'Nut in forum Combat Arms Spammers, Injectors and Multi Tools
    Replies: 0
    Last Post: 08-29-2011, 04:38 PM
  4. [Release] MPGH Multi Dll Injector
    By guifagotti in forum Combat Arms Brazil Hacks
    Replies: 19
    Last Post: 01-28-2011, 04:22 PM
  5. [Release] [XTCject] - Unique MPGH themed .dll Injector
    By -XpliCitt- in forum Combat Arms Hacks & Cheats
    Replies: 38
    Last Post: 03-12-2010, 06:26 PM

Tags for this Thread