Click to See Complete Forum and Search --> : Pointer as parameter?


vzcharlie
March 15th, 2001, 05:49 PM
How do use a function that needs a pointer as a parameter in VB. [i.e. ShGetSpecialFolderLocation() ]

John G Duffy
March 15th, 2001, 07:52 PM
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

cksiow
March 15th, 2001, 09:04 PM
you can declare that parameter as any. something like this

function c(d as any) as long

hope this help