check how other tuts are buildt and redo yours.
ok so i got bored so heres a simple tut
3 buttons
button1 is the steath button
button2 is the no steath button
button 3 is the exit button
ok first make you form border style none
then double click button1 TransparencyKey = BackColor
after that double click button 2 TransparencyKey = Color.Gray
then for button3 Me.Close()
and then your done
check how other tuts are buildt and redo yours.
no its simple
did you even read my post o_O?
yea .

382
Very Basic, Not much of a tutorial, But thank you for sharing it
What blubb is saying, it is a little hard to read and understand especially by your would be readers as they usually will be new to vb.net a format like.
Amendment:
_____________________
Open VB.net and create a new windows application
From your toolbox add
- 3 buttons
In the properties of each button, change the names respectively
Button1 Name = Stealth
Button2 Name = UnHide ' Or similiar
Button3 Name = Exit
Note: For quick keys, you can add the &char which will allow Alt + key after & Symbol
example
Button1 Name = &Stealth
Button2 Name = Un&Hide ' Or similiar
Button3 Name = E&xit
This will allow the user to press alt + S to enable stealth, Alt + H To Unhide the form and Alt + X to exit the application
Now change the form properties border style to "None"
' This will remove the border from the form, You can do this dynamically by hard coding
Form Load Event
[php]
Me.Borderstyle = "none"
[/php]
in Button1_Click Event (Double Click Button1)
add this code
[php]
TransparencyKey = BackColor
[/php]
double click button 2 to get Button2_Click Event
[php]
TransparencyKey = Color.Gray
[/php]
Double CLick button 3 to get to the code view and in buton3_click event add
[php]
me.dispose
exit
[/php]
That's it, it's that simple.
_______________________________
Even simple tutorials can be made user/new[user] Friendly, and for the sake of the tutorial, could or should, if your attempt is to help someone learn, then using some format can be beneficial , in the above example, I took your tutorial and separated it to make it more understandable.
Last edited by NextGen1; 03-27-2010 at 03:29 PM.
Tunguestenio (03-27-2011)
LMao awesome job nextgen, as always.
NextGen1 (03-27-2010)

382
Send me a PM with the information so as not to hijack the thread. I can help
Here's the code so you can actually read it separably
Code:TransparencyKey = BackColor after that double click button 2 TransparencyKey = Color.Gray then for button3 Me.Close()
I'm back.
All this does is make the form so you can't click on it.
I'm back.
Pfft. Fail. Please use or [php][/php] tags.