Warning: Member 'Value' was not found on the compile-time interface for type 'Control'. - (XLTest163a.xlsm) XLTest.BatchProcs, line 93
ctl.Value = True
Similarly for Control>Accelerator, Label.Tag, Frame.Tag, Worksheet.Name
Possibly see also #3497
That one is kind of a resolver bug: we only see the controls through MSForms.Control - which indeed doesn't have a Value member; we need to somehow figure out a way to see a MSForms.ComboBox as such, with MSForms.Control as its base type.
I'm getting this on a range object:
member 'value' was not found on compile-time interface for type 'range'
Dim updateCell As Range
updateCell.Value = updateCell.Value + somenumbers
@A9G-Data-Droid with Wayne's API (merged recently) we'll be able to get the resolver to understand the types correctly... and much more easily than without it.
For reference: Integrating Type Lib API Project
Most helpful comment
@A9G-Data-Droid with Wayne's API (merged recently) we'll be able to get the resolver to understand the types correctly... and much more easily than without it.