Ihax_Leopard Style Form Theme
If you have completed an application and wish to share the complete source/project files with everyone then please post it in here. Source-code files only, no tutorials.
9 posts
Page 1 of 1
This is a simple custom form created completely by me. this form is simple because i didnt spend much time on it ( 1 Hour ) however i will improve it by adding custom controls for it like a leopard style button and messagebox.
The form has:
A custom Border
Custom Context Menu ( Next Release )
Custom resizing code
custom moving from code
custom message box ( Next release )
If you want to use the form i would suggest downloading it opening it in vb 2008 or 2010 then clicking export temeplate > Project Template then save it as Ihax_leopard Form (Named that because it is based on a style called Leopard). Once you have exported it you can click create new project and just choose Ihax_Leopard Form insted of Windows Form.
Here is an image:
![Image]()
Download : Click Here
The form has:
A custom Border
Custom Context Menu ( Next Release )
Custom resizing code
custom moving from code
custom message box ( Next release )
If you want to use the form i would suggest downloading it opening it in vb 2008 or 2010 then clicking export temeplate > Project Template then save it as Ihax_leopard Form (Named that because it is based on a style called Leopard). Once you have exported it you can click create new project and just choose Ihax_Leopard Form insted of Windows Form.
Here is an image:

Download : Click Here
You do not have the required permissions to view the files attached to this post.
Thanks for this
Hello,
I love all these controls and custom forms being submitted lately ;)
Keep it up good work cooll;
I love all these controls and custom forms being submitted lately ;)
Keep it up good work cooll;
Welcome to CodenStuff.com Learn Code, Love Code. Thank you for being a member of the community.
ye i just got bored of making apps so i decided to do this so far its only me but i hope more people do this kind of stuff and come up with cool designs.
Thanks so much for this, just what i needed, just noticed when i maximize it covers my taskbar :(
ye i know its the only prob with borderless forms ill try fix soon.
Here is something you could use :
Private Sub PB_Max_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PB_Max.Click
If Me.WindowState = FormWindowState.Normal Then
Me.FormBorderStyle = Windows.Forms.FormBorderStyle.FixedToolWindow
Me.WindowState = FormWindowState.Maximized
Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
ElseIf Me.WindowState = FormWindowState.Maximized Then
Me.WindowState = FormWindowState.Normal
End If
End Sub
Private Sub PB_Max_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PB_Max.Click
If Me.WindowState = FormWindowState.Normal Then
Me.FormBorderStyle = Windows.Forms.FormBorderStyle.FixedToolWindow
Me.WindowState = FormWindowState.Maximized
Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
ElseIf Me.WindowState = FormWindowState.Maximized Then
Me.WindowState = FormWindowState.Normal
End If
End Sub
9 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023