Can you give me an example on how to make pointers and use them to manipulate the value they point at? Can you give me a string and a numeric example in visual basic? Can you send me a link to more information and a pointer reference (preferably MSDN)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Pointers can be simulated using various techniques, but there is no native pointers support in VB. See more here: Vb.net Pointers |
|||
|
VBA isn't a C family language (obviously), so as Icepack said pointers aren't really natively supported. You can take a look at the following articles: http://support.microsoft.com/kb/199824 (Though that's for VB rather than VBA; I've used some of those functions in VB6 myself but not VBA so I can't guarantee that any or all will work) and for the sake of completeness to get the address of a function: http://msdn.microsoft.com/en-us/library/office/aa165194%28v=office.10%29.aspx |
|||
|