
|
|||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|
#23 (permalink) | |
|
Administrator/Noob Helper
Join Date: Jan 2009
Posts: 520
Reputation: 57
|
Auth is mostly done. Here's what the finished product looks like.
http://grapplinghookcoding.com/AuthPreview.exe
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. Quote:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. |
|
|
|
|
|
|
#24 (permalink) | |
|
Ex-Móderator
GPT Earnings: $1.90
Join Date: Jan 2009
Location: Never You Mind! TBN's Unofficial Dictator
Posts: 877
Reputation: 35
|
Quote:
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. |
|
|
|
|
|
|
#25 (permalink) |
|
Super Active Member
Join Date: Jan 2009
Posts: 338
Reputation: 22
|
this new auth is ALMOST a bit sexier than grapp
ALMOST not really tho no joking aside shits sexy as fuck
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. |
|
|
|
|
|
#26 (permalink) |
|
Super Active Member
|
This auth doesn't look like Photoshop, it looks like After Effects:
![]()
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. Like any of my bots? Rep + To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. |
|
|
|
|
|
#28 (permalink) |
|
Banned
|
not 100% Complete yet you need to add code so when you Grab the Form it will move right now you cant Move it and to do this add this code
Code:
Imports System.Runtime.InteropServices
Public Class Form1
Private Const BorderWidth As Integer = 6
Private _resizeDir As ResizeDirection = ResizeDirection.None
Public Enum ResizeDirection
None = 0
Left = 1
TopLeft = 2
Top = 3
TopRight = 4
Right = 5
BottomRight = 6
Bottom = 7
BottomLeft = 8
End Enum
Private Sub Form1_MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseDown
If e.Button = Windows.Forms.MouseButtons.Left And Me.WindowState <> FormWindowState.Maximized Then
MoveForm()
End If
If e.Button = Windows.Forms.MouseButtons.Left And Me.WindowState <> FormWindowState.Maximized Then
End If
End Sub
Private Sub MoveForm()
ReleaseCapture()
SendMessage(Me.Handle, WM_NCLBUTTONDOWN, HTCAPTION, 0)
End Sub
<DllImport("user32.dll")> _
Public Shared Function ReleaseCapture() As Boolean
End Function
<DllImport("user32.dll")> _
Public Shared Function SendMessage(ByVal hWnd As IntPtr, ByVal Msg As Integer, ByVal wParam As Integer, ByVal lParam As Integer) As Integer
End Function
Private Const WM_NCLBUTTONDOWN As Integer = &HA1
Private Const HTBORDER As Integer = 18
Private Const HTBOTTOM As Integer = 15
Private Const HTBOTTOMLEFT As Integer = 16
Private Const HTBOTTOMRIGHT As Integer = 17
Private Const HTCAPTION As Integer = 2
Private Const HTLEFT As Integer = 10
Private Const HTRIGHT As Integer = 11
Private Const HTTOP As Integer = 12
Private Const HTTOPLEFT As Integer = 13
Private Const HTTOPRIGHT As Integer = 14
Public Sub New()
InitializeComponent()
End Sub
|
|
|
|
|
|
#35 (permalink) | ||
|
Active Member
GPT Earnings: $20.59
|
Why isn't anyone using this auth on their bots?
__________________
Quote:
Quote:
|
||
|
|
|
![]() |
| Tags |
| auth, gui |
| Thread Tools | |
| Display Modes | |
|
|