| |
GeekInterview.com > Interview Questions > Microsoft > Visual Basic
| Print | |
Question: Project Compatibility and Binary Compatibility
Answer: What is Compatibility? When do you use which compatibility? What are the primary differences between project compatibility and binary compatibility? |
| November 11, 2008 13:13:16 |
#1 |
| Parmanand Singh |
Member Since: November 2008 Total Comments: 2 |
RE: Project Compatibility and Binary Compatibility |
Used for COM component. there are 3 type of comatibility - No Compatibility, Project Compatibility, Binary Compatibilty. we have to set Compatibility for COM Component.
No Compatibility means when you compile your component each time near GUIDs, CLASS IDs will be created.
project Compatibility means Component is class ID will not change only new Interface id will be generated.
Binary Compatibility - VB will not change any of the existing class, interface or type library ID’s.
we should always set Binary compatibility for Live projects.
Pls have look on below URL for Better understanding -
visibleprogress . com/vb_binary_compatibility . htm |
| |
Back To Question | |