m4c4r0ni3z
05-04-2008, 12:48 PM
I'm just going to show you how to make your forms Transparent, and how to make them the Top Most Window.
Step Uno:
Make a button and a TextBox. Inside the button put:
Me.Opacity = Textbox1.Text
In order for this to work, you MUST put a . in front of the number you want for opacity. Example: .50 <-- this will make the form 50% see through. If you want it solid again type in .99
Thats all you have to do to make your form transparent :)
Step Dos: Making it the Top Most Window
Make another Button. Inside it put:
Me.TopMost = True
If you want to make a off button, just put in another button:
Me.TopMost = False
Step Uno:
Make a button and a TextBox. Inside the button put:
Me.Opacity = Textbox1.Text
In order for this to work, you MUST put a . in front of the number you want for opacity. Example: .50 <-- this will make the form 50% see through. If you want it solid again type in .99
Thats all you have to do to make your form transparent :)
Step Dos: Making it the Top Most Window
Make another Button. Inside it put:
Me.TopMost = True
If you want to make a off button, just put in another button:
Me.TopMost = False