PluginDemoCom.cls
资源名称:IE_VB.rar [点击查看]
上传用户:davilee3
上传日期:2015-04-22
资源大小:986k
文件大小:1k
源码类别:
浏览器
开发平台:
Visual Basic
- VERSION 1.0 CLASS
- BEGIN
- MultiUse = -1 'True
- Persistable = 0 'NotPersistable
- DataBindingBehavior = 0 'vbNone
- DataSourceBehavior = 0 'vbNone
- MTSTransactionMode = 0 'NotAnMTSObject
- END
- Attribute VB_Name = "cPluginDemoCom"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = True
- Option Explicit
- Private m_oWeb As SHDocVw.WebBrowser
- Public Sub Run(ByVal pSite As Object, ByVal vParent As Object)
- Dim tFrm As New frmDemo
- MsgBox "wahaha"
- If Not pSite Is Nothing Then
- Set m_oWeb = pSite
- m_oWeb.Navigate "about:blank"
- End If
- tFrm.Show , vParent
- End Sub