|
-
Sep 19th, 2000, 06:32 PM
#1
Thread Starter
So Unbanned
First off, is there anyway to blt an image that has translucent parts, solid parts, transparent parts, i'm thinking a grayscale alpha channel then use that to blt it. Can anyone tell me how?
On a totally unrelated matter,
How can I call a DLL from within VB? It's a dll someone made me a while back and I lost contact with.
Thanks if you answer either or both of my questions.
-
Sep 19th, 2000, 06:43 PM
#2
#2) You mean calling a C++ DLL? Use a Declare Function statement.
Code:
Declare Function FindWindow Lib "MyDll" Alias "FindWindowA" (ByVal MyData As Long) As Long
If it's an ActiveX DLL then you must add reference to it by going to Project > References.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|