L
Laurence
How does one go about making api calls in VS.2005 (VB.NET)?
Is there a book on API's for .NET like Dan's Appleman's API Book for VB?
How do I do the declares, and calls?
I am trying to do this:
Call SetWindowLong(mobjSplash.hwnd, GWL_EXSTYLE, WS_EX_LAYERED Or
Call GetWindowLong(mobjSplash.hwnd, GWL_EXSTYLE))
Call SetLayeredWindowAttributes(mobjSplash.hwnd, 0&, CByte(0), LWA_ALPHA)
I am trying to do this so that when I fade out a form, change its opacity
from 1 to 0 incrementally it won't flicker.
Laurence
Is there a book on API's for .NET like Dan's Appleman's API Book for VB?
How do I do the declares, and calls?
I am trying to do this:
Call SetWindowLong(mobjSplash.hwnd, GWL_EXSTYLE, WS_EX_LAYERED Or
Call GetWindowLong(mobjSplash.hwnd, GWL_EXSTYLE))
Call SetLayeredWindowAttributes(mobjSplash.hwnd, 0&, CByte(0), LWA_ALPHA)
I am trying to do this so that when I fade out a form, change its opacity
from 1 to 0 incrementally it won't flicker.
Laurence