Article ID: 198607 - Last Review: March 18, 2005 - Revision: 2.1 PRB: Access Violation in VB Run-Time Using AddressOfThis article was previously published under Q198607 SYMPTOMS
When running your Visual Basic application, you may encounter an error similar to the following:
The instruction at 0x660bd3b1 referenced memory at 0x0000009c. The
memory could not be written.
CAUSE
When the error occurs, the callback function is called by a thread that was not created by Visual Basic.
For instance, certain API calls such as CreateThread() and RegisterServiceCtrlHandler() create an additional thread before invoking the callback function that was previously setup by using the AddressOf operator. Although the same code may have worked in previous versions of Visual Basic, calling API's of this nature are currently unsupported in Visual Basic. MORE INFORMATION
These API functions use a Free threading model, but Visual Basic only supports Apartment-model threading.
Furthermore, additional care must be taken with regards to what code can be executed within the callback function. Any use of the following within the callback function may cause undesirable results:
REFERENCES
For more information on using threads in Visual Basic, please see the following:
Visual Basic Books Online, "Apartment-Model Threading in Visual Basic" Pattison, Ted, Programming Distributed Applications with COM and Microsoft Visual Basic 6.0. Microsoft Press, 1999, Chapter 7, "Exploring Apartments and Multithreading". McKinney, Bruce, HardCore Visual Basic. Microsoft Press, 1997 Chapter 11, "Threads and Synchronization" Appleman, Daniel, A Thread to Visual Basic article located at the following Web URL: http://www.desaware.com
(http://WWW.desaware.com)
For additional information, please see the following articles in the Microsoft Knowledge Base:
| Article Translations
|
Back to the top
