Microsoft KB Archive/170144

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 11:05, 21 July 2020 by X010 (talk | contribs) (Text replacement - """ to """)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Article ID: 170144

Article Last Modified on 1/20/2007



APPLIES TO

  • Microsoft Access 97 Standard Edition



This article was previously published under Q170144

Advanced: Requires expert coding, interoperability, and multiuser skills.


SYMPTOMS

A private, user-defined data type declared in a class module does not appear in the Auto List Members box as expected. However, a private, user-defined data type does appear in the Object Browser when you select the project name from the list of Libraries.

This problem does not occur with a user-defined data type declared in a standard module.

STATUS

Microsoft has confirmed this to be a problem in Microsoft Access 97. This problem no longer occurs in Microsoft Access 2000.

MORE INFORMATION

Steps to Reproduce Problem

  1. Start Microsoft Access 97 and open any database.
  2. Create a new form not based on any table or query in Design view.
  3. On the Tools Menu, click Options.
  4. In the Options dialog box, select the Modules tab. Make sure that the Auto List Members check box is selected, and then click OK.
  5. On the View menu, click Code.
  6. Type the following code:

    Private Type TestType
       strTestType As String
    End Type
    
    Dim x As
                            

    Note that TestType does not appear in the Auto List Members box.

  7. Complete the last line of code so that it reads as follows:

    Dim x as TestType
                        
  8. Compile the code. Note that you can compile the code successfully.


REFERENCES

For more information about user-defined data types, search the Help Index for "Type Statement."

Keywords: kbbug kbprogramming KB170144