手机
当前位置:查字典教程网 >编程开发 >php教程 >php调用dll的实例操作动画与代码分享
php调用dll的实例操作动画与代码分享
摘要:动画中的原代码如下:复制代码代码如下:VERSION1.0CLASSBEGINMultiUse=-1'TruePersistable=0'N...

php调用dll的实例操作动画与代码分享1

动画中的原代码如下:

复制代码 代码如下:

VERSION 1.0 CLASS

BEGIN

MultiUse = -1 'True

Persistable = 0 'NotPersistable

DataBindingBehavior = 0 'vbNone

DataSourceBehavior = 0 'vbNone

MTSTransactionMode = 0 'NotAnMTSObject

END

Attribute VB_Name = "tw"

Attribute VB_GlobalNameSpace = False

Attribute VB_Creatable = True

Attribute VB_PredeclaredId = False

Attribute VB_Exposed = True

Option Explicit

Private MyScriptingContext As ScriptingContext

Private MyApplication As Application

Private MyRequest As Request

Private MyResponse As Response

Private MyServer As Server

Private MySession As Session

Public Sub OnStartPage(PassedScriptingContext As ScriptingContext)

Set MyScriptingContext = PassedScriptingContext

Set MyApplication = MyScriptingContext.Application

Set MyRequest = MyScriptingContext.Request

Set MyResponse = MyScriptingContext.Response

Set MyServer = MyScriptingContext.Server

Set MySession = MyScriptingContext.Session

End Sub

Public Sub OnEndPage()

Set MyScriptingContext = Nothing

Set MyApplication = Nothing

Set MyRequest = Nothing

Set MyResponse = Nothing

Set MyServer = Nothing

Set MySession = Nothing

End Sub

Public Function UserOut(User) As Variant

UserOut = User

End Function

【php调用dll的实例操作动画与代码分享】相关文章:

php解析xml方法实例详解

用PHP实现文件上传

用libtemplate实现静态网页生成

php操作redis缓存方法分享

php 批量查询搜狗sogou代码分享

php编写的抽奖程序中奖概率算法

最好用的JavaScript开发工具和代码编辑器

php使用cookie实现记住用户名和密码实现代码

php实现插入排序

我的论坛源代码(五)

精品推荐
分类导航