I am trying to draw on a UserControl, but I want to have other regions apart from my drawing transparent, so the Background/Controls on the Form should be visible apart from my drawing when the UserControl is over them. As of now when I set the BackStyle Opaque the drawing is visible but when I change it to transparent it is not.
Code:Private Sub UserControl_Initialize() UserControl.BackStyle = 0 '0=Transparent 1=Opaque Line (200, 200)-(800, 800), RGB(0, 0, 0), BF End Sub




Reply With Quote
