I have an outdated excel spreadsheet that performs many functions with excel macros written in VBA.
Where can I find documentation on what these objects, methods, etc. do?
Something like Microsoft documentation on T-SQL or C # .
For example, I have this code:
With DialogSheets("string") .EditBoxes("otherstring").property End With
Where can I find documentation for the DialogSheet object or the .EditBoxes method?
The object browser inside Microsoft Visual Basic does not even display the returned method types. In this case, it shows
Function EditBoxes ([Index]) as an object. Excel.DialogSheet Member
and the MSDN documentation for the Excel Object Model Reference Does not have a DialogSheet or Excel object.
So where can I find useful documentation?
vba excel-vba excel documentation msdn
Raynos
source share