Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Adding 'modified' tooltip
Message
From
23/09/2005 12:50:13
 
 
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01051669
Message ID:
01052451
Views:
10
Hi,

>
If there is another window on top then your drawing is clipped to the window context not to anything else. You only draw to the context/surface associated with the window.
>

Sorry. You're right. Unless, of course, you clear the WS_CLIPCHILDEN flag:
   Protected Overrides ReadOnly Property CreateParams() As CreateParams
        Get
            Dim CParams As CreateParams = MyBase.CreateParams
            CParams.Style = CParams.Style And Not WS_CLIPCHILDREN
            Return CParams
        End Get
    End Property
but that's just nit-picking<s>
Regards,
Viv
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform