Skip to content

Commit 0e4e331

Browse files
committed
Add quick fix warning to ApplicationWorksheetFunctionInspectionMeta
1 parent 2d24355 commit 0e4e331

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

RetailCoder.VBE/Inspections/Resources/InspectionsUI.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

RetailCoder.VBE/Inspections/Resources/InspectionsUI.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ If the parameter can be null, ignore this inspection result; passing a null valu
635635
<value>Expression '{0}' cannot be validated at compile-time.</value>
636636
</data>
637637
<data name="ApplicationWorksheetFunctionInspectionMeta" xml:space="preserve">
638-
<value>The Excel Application object does not implement the WorksheetFunction interface directly. All calls made to WorksheetFunction members are handled as late bound and errors in the called member will be returned wrapped in a Variant of VbVarType.vbError. This makes errors un-trappable with error handlers and adds a performance penalty in comparison to early bound calls. Consider calling Application.WorksheetFunction explicitly.</value>
638+
<value>The Excel Application object does not implement the WorksheetFunction interface directly. All calls made to WorksheetFunction members are handled as late bound and errors in the called member will be returned wrapped in a Variant of VbVarType.vbError. This makes errors un-trappable with error handlers and adds a performance penalty in comparison to early bound calls. Consider calling Application.WorksheetFunction explicitly. Note: If this call generated errors in the past, those errors were ignored. If applying the quick fix, proper error handling should be in place.</value>
639639
</data>
640640
<data name="ApplicationWorksheetFunctionInspectionName" xml:space="preserve">
641641
<value>Late bound WorksheetFunction call.</value>

0 commit comments

Comments
 (0)