Results 1 to 6 of 6
  1. #1
    Paul's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    6,296
    Reputation
    473
    Thanks
    1,061
    My Mood
    Sleepy

    [Visual Basics] Gui-ImportsGlass-Effect

    Just a simple snippet i've found, but looks very nice although

    Code:
    Imports System.Runtime.InteropServices
    
    Public Class Form1
        <StructLayout(LayoutKind.Sequential)> _
        Public Structure MARGINS
            Public Left As Integer
            Public Right As Integer
            Public Top As Integer
            Public Bottom As Integer
        End Structure
        <DllImport("dwmapi.dll")> Public Shared Function DwmExtendFrameIntoClientArea(ByVal hWnd As IntPtr, ByRef pMarinset As MARGINS) As Integer
        End Function
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Dim margins As MARGINS = New MARGINS
            margins.Left = -1
            margins.Right = -1
            margins.Top = -1
            margins.Bottom = -1
            Dim hwnd As IntPtr = Handle
            Dim result As Integer = DwmExtendFrameIntoClientArea(hwnd, margins)
            Me.BackColor = Color.Black
    
        End Sub
    End Class
    no credits to me,
    i didn't make this


  2. #2
    A$IAN's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Germany
    Posts
    5,654
    Reputation
    274
    Thanks
    2,010
    My Mood
    Amused
    So give credits
    ~Donater since 19th October 2011~
    ~Ex-Crossfire Minion || Resigned on 4th February 2012 ~
    Da fuck

  3. #3
    GunBoy120's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    In my house lol
    Posts
    102
    Reputation
    10
    Thanks
    5
    My Mood
    Cheerful
    nice bro ^^

  4. #4
    HeavenlyRage's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Earth
    Posts
    1,588
    Reputation
    58
    Thanks
    394
    My Mood
    Bored
    Give the credits then.

  5. #5
    Skrillex's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    701
    Reputation
    103
    Thanks
    4,749
    My Mood
    Fine
    good job uschi xD but give credits

  6. #6
    [P]owne[D]'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    ♥ Germany ♥
    Posts
    45
    Reputation
    10
    Thanks
    1
    My Mood
    Daring
    What it does? 0.o


Similar Threads

  1. Writing your own Visual Basics (v5 or v6) Trainer
    By TheRedEye in forum Game Hacking Tutorials
    Replies: 29
    Last Post: 12-09-2013, 09:56 AM
  2. [HELP]Visual basic cool Guis/layouts
    By Klumzy in forum Visual Basic Programming
    Replies: 11
    Last Post: 11-17-2009, 05:06 PM
  3. problem with the visual basic tut
    By Elliwood in forum WarRock - International Hacks
    Replies: 5
    Last Post: 05-30-2007, 12:45 AM
  4. [Help] Atom API with Visual Basic 6.0 or .NET
    By Bull3t in forum Visual Basic Programming
    Replies: 5
    Last Post: 07-23-2006, 09:21 AM
  5. Packets & Visual Basic
    By BadBob in forum Hack Requests
    Replies: 5
    Last Post: 07-20-2006, 09:28 PM