Page 1 of 2 12 LastLast
Results 1 to 15 of 25
  1. #1
    JamesA1994's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    The dark side
    Posts
    1,703
    Reputation
    271
    Thanks
    529
    My Mood
    Psychedelic

    [Source] Good GUI

    Visual Basic - Good GUI
    The point of this project it to make the GUI a little bit 'smoother'. By using this, and a little Photoshop skills, you can blend the toolbar with your form and make it look super sleek.

    Features:
    More Control over the look of the toolbar.
    Can still Minimize and Close.
    Fades on minimize and close.
    Easy to customize (With Photoshop).

    Now, don't flame me if you think it looks shit or too basic, I am not very good with Photoshop and its made for people that know shit all about VB.

    Code:
    Code:
    #Region "Form Eye Candy"
        Dim Point As New System.Drawing.Point()
        Dim X, Y As Integer
        Dim Set1 As String
    
        Private Sub Label7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblClose.Click
            Set1 = "Close"
            Timer2.Start()
        End Sub
    
        Private Sub lblMinimize_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblMinimize.Click
            Set1 = "Min"
            Timer2.Start()
        End Sub
    
        Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
            Opacity -= 0.03
            If Opacity = 0 Then
                If Set1 = "Min" Then
                    WindowState = FormWindowState.Minimized
                    Opacity = 100
                Else
                    End
                End If
                Timer2.Stop()
            End If
        End Sub
    
        Private Sub frmText_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles frmText.MouseDown
            X = Control.MousePosition.X - Me.Location.X
            Y = Control.MousePosition.Y - Me.Location.Y
        End Sub
    
        Private Sub frmToolbar_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles frmToolbar.MouseDown
            X = Control.MousePosition.X - Me.Location.X
            Y = Control.MousePosition.Y - Me.Location.Y
        End Sub
    
        Private Sub lblMinimize_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles lblMinimize.MouseDown
            X = Control.MousePosition.X - Me.Location.X
            Y = Control.MousePosition.Y - Me.Location.Y
        End Sub
    
        Private Sub lblMinimize_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles lblMinimize.MouseMove
            If e.Button = MouseButtons.Left Then
                Point = Control.MousePosition
                Point.X = Point.X - (X)
                Point.Y = Point.Y - (Y)
                Me.Location = Point
            End If
        End Sub
    
        Private Sub frmText_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles frmText.MouseMove
            If e.Button = MouseButtons.Left Then
                Point = Control.MousePosition
                Point.X = Point.X - (X)
                Point.Y = Point.Y - (Y)
                Me.Location = Point
            End If
        End Sub
    
        Private Sub frmToolbar_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles frmToolbar.MouseMove
            If e.Button = MouseButtons.Left Then
                Point = Control.MousePosition
                Point.X = Point.X - (X)
                Point.Y = Point.Y - (Y)
                Me.Location = Point
            End If
        End Sub
    #End Region
    Screenshot:


    Virus Scans:
    VirusTotal
    Jotti

    If you have any questions, PM me, VM me or just post here.
    Last edited by JamesA1994; 11-06-2010 at 05:54 AM.
    CoD Minion: Jan 13th 2011 to April 11 2011
    MMORPG Minion Since: March 28th 2011 to April 11 2011

    Don't be afraid to rep, you aren't loosing anything!
    Don't forget your P&Q's. Press the thanks button if someone has helped.
    jamesa1994@hotmail.com

  2. The Following 3 Users Say Thank You to JamesA1994 For This Useful Post:

    ♪~ ᕕ(ᐛ)ᕗ (11-06-2010),assulat (07-12-2015),Skyline. (11-07-2010)

  3. #2
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,111
    Reputation
    1096
    Thanks
    1,971
    My Mood
    Doh
    Great!!! Thanks! Ur a great coder...

    Offtopic:
    i saw that here is a free position for minion......Why not you for it?!

  4. The Following User Says Thank You to ♪~ ᕕ(ᐛ)ᕗ For This Useful Post:

    JamesA1994 (11-06-2010)

  5. #3
    JamesA1994's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    The dark side
    Posts
    1,703
    Reputation
    271
    Thanks
    529
    My Mood
    Psychedelic
    Quote Originally Posted by AcE.bu50t View Post
    Great!!! Thanks! Ur a great coder...

    Offtopic:
    i saw that here is a free position for minion......Why not you for it?!
    I do want the minion xD
    https://www.mpgh.net/forum/27-coders-...-minion-7.html
    CoD Minion: Jan 13th 2011 to April 11 2011
    MMORPG Minion Since: March 28th 2011 to April 11 2011

    Don't be afraid to rep, you aren't loosing anything!
    Don't forget your P&Q's. Press the thanks button if someone has helped.
    jamesa1994@hotmail.com

  6. #4
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,682
    My Mood
    Mellow
    Uhm, fairly basic yuh? Maybe add some code to the main thread rather than forcing people to download it to see.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  7. #5
    JamesA1994's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    The dark side
    Posts
    1,703
    Reputation
    271
    Thanks
    529
    My Mood
    Psychedelic
    Quote Originally Posted by Jason View Post
    Uhm, fairly basic yuh? Maybe add some code to the main thread rather than forcing people to download it to see.
    It was meant to be basic, and yeah, I'll post the code in the main message... The reason I did it the way I did was because of the pic...
    Thanks.
    CoD Minion: Jan 13th 2011 to April 11 2011
    MMORPG Minion Since: March 28th 2011 to April 11 2011

    Don't be afraid to rep, you aren't loosing anything!
    Don't forget your P&Q's. Press the thanks button if someone has helped.
    jamesa1994@hotmail.com

  8. #6
    Sn0wn00b's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    88
    Reputation
    10
    Thanks
    2
    My Mood
    Bored
    nice tut man ;D

  9. #7
    cgallagher21's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    1,626
    Reputation
    11
    Thanks
    325
    My Mood
    Angelic
    gj JamesA1994

  10. #8
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,137
    My Mood
    Dead
    GJ. Keep it up =)

  11. #9
    bbhing987's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    ng
    Posts
    58
    Reputation
    10
    Thanks
    2
    good job bro
    When i open the project file, it supposed not to have errors
    but when i open the project file, it have 15 errors on the thing when opening the project file..
    mind to teach me how to fix it?thanks

  12. #10
    JamesA1994's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    The dark side
    Posts
    1,703
    Reputation
    271
    Thanks
    529
    My Mood
    Psychedelic
    Quote Originally Posted by bbhing987 View Post
    good job bro
    When i open the project file, it supposed not to have errors
    but when i open the project file, it have 15 errors on the thing when opening the project file..
    mind to teach me how to fix it?thanks
    I have 0 errors...
    What OS do you have?
    What are the errors?
    Visual Basic Version?
    .Net Version?
    CoD Minion: Jan 13th 2011 to April 11 2011
    MMORPG Minion Since: March 28th 2011 to April 11 2011

    Don't be afraid to rep, you aren't loosing anything!
    Don't forget your P&Q's. Press the thanks button if someone has helped.
    jamesa1994@hotmail.com

  13. #11
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,682
    My Mood
    Mellow
    Quote Originally Posted by bbhing987 View Post
    good job bro
    When i open the project file, it supposed not to have errors
    but when i open the project file, it have 15 errors on the thing when opening the project file..
    mind to teach me how to fix it?thanks
    Telling us the errors might be a good idea don't you think?

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  14. #12
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Heh? How is this different from how you'd normally do it? ._.

  15. #13
    JamesA1994's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    The dark side
    Posts
    1,703
    Reputation
    271
    Thanks
    529
    My Mood
    Psychedelic
    Quote Originally Posted by freedompeace View Post
    Heh? How is this different from how you'd normally do it? ._.
    You have a custom title bar which can make your form look much better...
    CoD Minion: Jan 13th 2011 to April 11 2011
    MMORPG Minion Since: March 28th 2011 to April 11 2011

    Don't be afraid to rep, you aren't loosing anything!
    Don't forget your P&Q's. Press the thanks button if someone has helped.
    jamesa1994@hotmail.com

  16. #14
    bbhing987's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    ng
    Posts
    58
    Reputation
    10
    Thanks
    2
    the error is in this picture
    [IMG]https://i828.photobucke*****m/albums/zz202/ngbhing/adsfadsfads.jpg[/IMG]
    please can someone help me solve this problem so that i can get the good gui !

  17. #15
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,796
    My Mood
    Breezy
    This is for VB2010...
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

Page 1 of 2 12 LastLast

Similar Threads

  1. Source Codes For an Auto hack good features
    By 11vasher11 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 11
    Last Post: 10-13-2010, 03:05 AM
  2. Can i Request a Good Injector Source Code?
    By InCapacitated in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 9
    Last Post: 10-05-2010, 07:41 AM
  3. [Source Code]Cool GUI
    By aLcohoL_95 in forum Visual Basic Programming
    Replies: 14
    Last Post: 08-02-2010, 09:02 AM
  4. [HELP]Good injecter source code!
    By DeathHunter in forum Programming Tutorial Requests
    Replies: 7
    Last Post: 02-22-2010, 01:32 PM
  5. [HELP]Good injecter source code!
    By DeathHunter in forum Visual Basic Programming
    Replies: 7
    Last Post: 02-22-2010, 01:32 PM