V
VanS
Greetings,
I have an Excel/Word VBA app with automation and I need to make it backward
compatible to Office 97. I am considering late-binding as the simplest
solution despite reduced efficiency, but wanted to confirm I understand the
process. I have read several KB articles and just want to confirm: this issue
is pertinent only when declaring an object, correct? IE I have no variable
declaration as
Dim excl as excel.object
but only Public wrd as word.application. So I would simply need to
re-declare that as: Public wrd as Object
Correct? There are no other elements regarding late binding?
Thanks, God bless
Van
I have an Excel/Word VBA app with automation and I need to make it backward
compatible to Office 97. I am considering late-binding as the simplest
solution despite reduced efficiency, but wanted to confirm I understand the
process. I have read several KB articles and just want to confirm: this issue
is pertinent only when declaring an object, correct? IE I have no variable
declaration as
Dim excl as excel.object
but only Public wrd as word.application. So I would simply need to
re-declare that as: Public wrd as Object
Correct? There are no other elements regarding late binding?
Thanks, God bless
Van