That which "changes" with Late binding are just constants. (Sometimes as part of an enumeration).
They're defined for convenience in the target library - but none the less always just represent a literal value.
In the previous example wdFormatHTML is a constant in the Word object library who's value is 8.
If you're switching to late binding any such constants you've not replaced will fail at compile time (assuming you have Option Explicit always enabled - which, of course, you always should).
There's no effort to finding the constant value either.
In the immediate window
?wdFormatHTML
8
will return the literal value for use in your late bound code.
Though in unpredictable circumstances such as this, Late binding is the way to go - it's not always possible.
For example if you want to sink events of objects in the target library then you must use early binding.
To do this you can reference the earliest version of the library in your development copy of the MDB before releasing it. Access will step up to newer versions - e.g. a referenced Word 8 library will use 9, 10, 11 or 12. But, as amply demonstrated by this thread's existence not the reverse.
However that requires that you have an instance of the earlier version on your PC (a great advert to maintain multiple Office installations on development machines ;-)
If licensing permits, you could just grab a copy of the appropriate type library file and reference that (for example in this case it would be EXCEL9.OLB in the Office 2000 installation folder).
While references can be established via code - they can obviously only be done so in an MDB (ACCDB) and not in an MDE (ACCDE).
You'd need to be very sure you didn't reference any such code first and attempt to add your reference at application startup. (Access might well highlight the problem anyway at application startup - whether or not it caused any runtime or compile errors :-s)
With that and the MDE limitation - it's not something I care for. (Though the act itself of adding references through code is pretty straight forward).
Cheers.