19-03-13, 11:01 AM
مبتدئ كتب :ارد تغير Opacity من خلال Textboxكود :
Me.Opacity = TextBox1.Text
إليك الكود
PHP كود :
If Val(TextBox1.Text) > 100 Then TextBox1.Text = "100"
If Val(TextBox1.Text) < 100 Or TextBox1.Text = "" Then TextBox1.Text = "0"
Me.Opacity = Val(TextBox1.Text)
<---------------------------------------------------------------->

