PDA

View Full Version : [TuT] Editing Forms



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

bakulaw04
10-04-2009, 03:24 AM
whats ds?huh

HazXod3d
10-04-2009, 05:01 AM
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 :)


try to have instead of


Me.Opacity = Textbox1.Text

to

Me.Opacity = "." & Textbox1.Text

then it converts directly to .50 from 50 from the textbox ^^

-=ProUser=-
12-07-2009, 02:27 PM
Nice, it will help me a lot.