How do use a function that needs a pointer as a parameter in VB. [i.e. ShGetSpecialFolderLocation() ]
Printable View
How do use a function that needs a pointer as a parameter in VB. [i.e. ShGetSpecialFolderLocation() ]
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
you can declare that parameter as any. something like this
function c(d as any) as long
hope this help