动网论坛,站长建站首选,国内使用量最多的论坛软件 动网论坛官方技术讨论区 站长工具 申请属于您自己的免费论坛
首页 | 新闻资讯 | 网站运营 | 网络编程 | 数据库 | 服务器 | 网页设计 | 图像媒体 | 网络应用 | 搜索优化 | 资源下载 | 动网主机 | DVBOX
    本站内  互联网 ASP论坛  ASP.Net论坛  PHP论坛
   Asp → 阅读文章

 用VB6创建MTS组件

作者:东方蜘蛛(转贴) 来源:chinaasp 
阅读 5345 人次 , 2001-2-12 

'随便贴贴,学过VB的人都应该知道的,不好意思。
'**********************************************************************************************
' MTS VB6 COM Component Template - by Michael Gonzalez
'**********************************************************************************************
'(1) You must create a reference to the Microsoft Transaction Server Type Library (mtxas.dll).
' If using Windows 2000, choose the COM+ Services Library (comsvcs.dll) instead.
'(2) Set your ClassModule's MTSTransactionMode property to 2 - RequiresTransaction
' Note: ONLY use 2 - Requires Transaction if you plan on using the component with an MSDTC-
' compliant Resource Manager such as MSMQ or SQL Server - OTHERWISE, use
' 1 - No Transactions
'(3) Make sure your project's Unattended Execution property is checked
'(4) Make sure your project's Component Version Compatibility is set to Binary Compatibility
'**********************************************************************************************
' ObjectControl implements the interface that is used by MTS when the object is
' activated and/or deactivated - this happens when you call one of the components's methods
' The ObjectControl implementation makes use of three procedures:
' 1) ObjectControl_Activate
' 2) ObjectControl_CanBePooled
' 3) ObjectControl_Deactivate
'**********************************************************************************************
Implements ObjectControl

Dim objOC As ObjectContext

Public Sub Something()
'This is a user-defined procedure/method
'The ObjectContext Object is returned by GetObjectContext

On Error GoTo Abort

'*******************************************************
' Perform whatever you want in this area
' Visual Basic 6 stuff goes here
' The Something() procedure/method is just
' an example - you may use properties and other
' methods/procedures as well!
'*******************************************************

Finished:
objOC.SetComplete
Exit Sub
Abort:
objOC.SetAbort
Err.Raise Err.Number, Err.Source, Err.Description
Exit Sub
End Sub

Private Sub ObjectControl_Activate()
'MTS invokes this procedure/method when the component/object is instantiated
Set objOC = GetObjectContext()
Exit Sub
End Sub

Private Function ObjectControl_CanBePooled() As Boolean
'This enables MTS object pooling (not currently supported my MTS 2.0)
ObjectControl_CanBePooled = True
End Function

Private Sub ObjectControl_Deactivate()
'MTS invokes this procedure/method right before the component/object is released
Set objOC = Nothing
Exit Sub
End Sub
  

 本文Tags组件  
 收藏本文  打印本文  论坛讨论  关闭窗口
· 上一篇:关于打印页面的一些经验
· 下一篇:用asp程序显示sql数据库所有表的名称(带删除功能)
· 在电子商务中实现购物车的方法
· ASP文章系统解决方案
· ASP编写完整的一个IP所在地搜索类
· 如何使ASP输出结果不支持html语法?
· 利用ASP实现三个强大功能(二) (转,强烈推荐)


关于本站 | 联系我们 | 业务合作 | 客户案例 | 诚聘英才 | 广告合作 | 收藏本站
海口动网先锋网络科技有限公司版权所有
Copyright © 2000 - 2006 Cndw.Com
中华人民共和国电信与信息服务业务经营许可证编号 琼 ICP 020077