Errata

Developing Visual Basic Add-ins

Errata for Developing Visual Basic Add-ins

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 45

The fifth line from bottom now reads:

"Dim proj1, proj2 as VBProject"

This is a common mistake whereby the proj1 variable will be declared as a
variant type. The line should read something like:

"Dim proj1 As VBProject, proj2 As VBProject"

Anonymous   
Printed Page 78
On the fifth line, the Clear procedure does not require any parameters.

The line currently reads:

"Public Sub Clear(sText As String)"

Should read:

"Public Sub Clear()"

Anonymous   
Printed Page 89
The last sentence in the first paragraph in the section titled: "The

Windows Collection" now reads: "...it has the same effect as setting the
Visible property to True."

Should read:

"...it has the same effect as setting the Visible property to False."

Anonymous   
Printed Page 97
In Example 7-3, the third line of code reads: "Set winImm = gVBInst..."

and the sixth line of code reads: "Set winActive = gVBInst..."

Should they read " = oVBE..."?

Anonymous   
Printed Page 97

In Example 7-3, the last two lines of code read:

"winActive.SetFocus
Set winImm = Nothing"

Why not also "Set winActive = Nothing"?

Anonymous