Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
881 views
in Technique[技术] by (71.8m points)

vba - Why doesn't VBE.ActiveCodePane.CodeModule work when the VBE (code window) isn't open?

Create a form that runs the following code.

MsgBox (VBE.ActiveCodePane.CodeModule)

And this message appears.

enter image description here

Now save, close, and reopen the database, and see this message:

Run-time error '91': Object variable or With block variable not set

enter image description here

If you open the Visual Basic Editor, it runs again. Even if you close the VBE, it still runs.

But when you close the whole application and reopen it, leaving the VBE closed, you get the error.

Why? What's going on here?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You reference the active pane object. The object isn't set until a pane gets activated. So before you open the VBE, the object is not set yet. Once you close the VBE, the object remains, so you can still reference it.

To get a handle to the ActiveCodepane object, without opening the VBE, is by activating a VBComponent, like this:

VBE.ActiveVBProject.VBComponents("Module1").Activate

You can activate any VBComponent like this.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...