GetLayeredWindowAttributes

  • Thread starter Thread starter Doominato
  • Start date Start date
D

Doominato

good day,

can anyone please give me some insight as to how I can get the current
amount of alpha of some window using the
GetLayeredWindowAttributes function. I know how to declare it in VB.NET:

Public Declare Function GetLayeredWindowAttributes Lib "user32" (ByVal hwnd
As Integer, ByVal colorKey As Integer, ByVal bAlpha As Byte, ByVal dwFlags
As Integer) As Integer

but I have no idea as to how get that third parameter bAlpha out of it?!?
Any help will be greatly appreciated thanx.
 
but I have no idea as to how get that third parameter bAlpha out of it?!?

The last three parameters should all be ByRef rather than ByVal.



Mattias
 
Back
Top