Results 1 to 2 of 2

Thread: Two questions....

  1. #1

    Thread Starter
    So Unbanned DiGiTaIErRoR's Avatar
    Join Date
    Apr 1999
    Location
    /dev/null
    Posts
    4,111
    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.

  2. #2
    Guest
    #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
  •  



Click Here to Expand Forum to Full Width