HOWTO: Avoid "Error 91" when Debugging MTS Components w/ VB

ID: Q188919

The information in this article applies to:

SUMMARY

When developing Visual Basic components to run under control of Microsoft Transaction Server (MTS), if your object uses ObjectContext, you may encounter the following error when trying to debug them within the Visual Basic environment:

   Run-Time Error '91': Object variable or with block variable not set.

This article describes how to configure Visual Basic to allow you to debug these components using the special debug version of GetObjectContext.

RESOLUTION

There are two ways to avoid this error when writing Visual Basic components. The first is to configure Visual Basic to use a special version of the object context. The second way is to use the Microsoft Developer Studio environment.

MORE INFORMATION

To facilitate application debugging using Visual Basic, you can debug a component that uses ObjectContext by enabling a special version of the object context. This debug-only version is enabled by creating the following registry key:

   HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Transaction
        Server\Debug\RunWithoutContext

Steps to Create the Registry Key

1. Start Regedit and locate the following registry key:

      HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Transaction Server

2. Select the Transaction Server key, right-click the selection and choose
   New. Next, choose Key and then name this new key Debug.

3. Now, select the Debug key, right-click and then choose New. Next, choose
   Key and then name this new key RunWithoutContext.

Now that this registry entry is present on your computer, you should now be able to run your MTS component using Visual Basic.

NOTE: When running in debug mode, none of the functionality of MTS is enabled. GetObjectContext returns the debug ObjectContext rather than returning Nothing.

When running in this debug mode, the ObjectContext operates as follows:

REFERENCES

For more information on debugging compiled Visual Basic components using the Microsoft Developer Studio environment, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q166275
   TITLE     : HOWTO: Debug a Native Code Visual Basic Component in VC++

Microsoft Transaction Server 2.0 Help; search on: "Debugging Visual Basic MTS Components"

Additional query words: kbdse kbMTS100 kbMTS200 kbVBp500 kbVBp600 kbRegistry

Keywords          :  
Platform          : WINDOWS winnt
Issue type        : kbhowto

Last Reviewed: March 18, 1999