नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
C++ Specific
Allows for loading libraries other than the primary type library.
Syntax
#import type-library-dll tlbid( number )
Parameters
number
The number of the type library in type-library-dll.
Remarks
If multiple type libraries are built into a single DLL, it's possible to load libraries other than the primary type library by using tlbid.
For example:
#import <MyResource.dll> tlbid(2)
is equivalent to:
LoadTypeLib("MyResource.dll\\2");
END C++ Specific