Link to home
Start Free TrialLog in
Avatar of JamesBrian
JamesBrian

asked on

Why transparent label in form?

Hi all,

while my app is executing lots of database stuff, I want to show my user a waiting screen :

Dim myfrm As New dlgWachtForm
            myfrm.Show()
            myfrm.TopMost = True

This works OK, but on this form, there is a Label.
For whatever reason, this label becomes transparent, and the form under the waiting form shows through the size of the label....
I have tried different settings for the label's background etc, but all failed

Any suggestions?
Avatar of rachitkohli
rachitkohli
Flag of India image

Just make in Form Properties Opacity is 100%
ASKER CERTIFIED SOLUTION
Avatar of TimCottee
TimCottee
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of JamesBrian
JamesBrian

ASKER

That did it ! Thanks !