Web Development
activex.asc
Associated article: ActiveX Documents and the World Wide Web
Tags: Web Development .NET
_ActiveX Documents and the World Wide Web_
by Vinod Anantharaman
Listing One
interface IOleDocument : IUnknown {
virtual HRESULT CreateView(pipsite,pstm,dwReserved,ppview)=0;
virtual HRESULT GetDocMiscStatus(pdwStatus) = 0;
virtual HRESULT EnumViews(ppenumview, ppview) = 0;
}
interface IOleDocumentView : IUnknown {
virtual HRESULT SetIn-placeSite(pipsite) = 0;
virtual HRESULT ...


