CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2001
    Posts
    35

    Pointer as parameter?

    How do use a function that needs a pointer as a parameter in VB. [i.e. ShGetSpecialFolderLocation() ]


  2. #2
    Join Date
    Apr 2000
    Location
    South Carolina,USA
    Posts
    2,210

    Re: Pointer as parameter?

    You might look at the "AddressOF" function. Don't know if it will help, but it is the only pointer thingy I know VB works with.

    John G

  3. #3
    Join Date
    Apr 2000
    Posts
    737

    Re: Pointer as parameter?

    you can declare that parameter as any. something like this

    function c(d as any) as long

    hope this help


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

Featured