Desktop Functions: Smart Device Functions:
|
VarBstrFromDisp (oleaut32)
C# Signature:
[DllImport("oleaut32.dll", SetLastError=false, ExactSpelling=true)] VB Signature:
Declare Function VarBstrFromDisp Lib "oleaut32.dll" (Byval Disp as IntPtr, Byval lcid As Integer, Byref pbstrOut as String) As Integer User-Defined Types:None. Alternative Managed API:There is no alternative API in .NET except for Dispatch Invoke the default value (DispId == 0) However, you could use the dynamic keyword if you do know the name of the default Dispatch property, such as 'Value' or 'Text'. But if you don't know the default property, the IDispatch Invoke() method comes in, which is ugly. Whynot have OleAut32.dll do it for you? However, you Notes:The sample cannot be used on DCOM (remote COM). It is not tested. Tips & Tricks:Please add some! Sample Code:object pComObject = rs.Fields[0]; // ADODB COM stuff just to illustrate how it works. Normally, use a typelibrary or the dynamic keyword object pComObject = rs.Fields[0]; // ADODB COM stuff if (Marshal.IsComObject(pComObject)) // shows as System.__ComObject {
string pbstrOut; Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|