网页资讯视频图片知道文库贴吧地图采购
进入贴吧全吧搜索

 
 
 
日一二三四五六
       
       
       
       
       
       

签到排名:今日本吧第个签到,

本吧因你更精彩,明天继续来努力!

本吧签到人数:0

一键签到
成为超级会员,使用一键签到
一键签到
本月漏签0次!
0
成为超级会员,赠送8张补签卡
如何使用?
点击日历上漏签日期,即可进行补签。
连续签到:天  累计签到:天
0
超级会员单次开通12个月以上,赠送连续签到卡3张
使用连续签到卡
01月13日漏签0天
vba吧 关注:17,090贴子:66,912
  • 看贴

  • 图片

  • 吧主推荐

  • 游戏

  • 首页 上一页 1 2
  • 21回复贴,共2页
  • ,跳到 页  
<<返回vba吧
>0< 加载中...

回复:vba项目承接

  • 只看楼主
  • 收藏

  • 回复
  • 202.96.191.*
快试试吧,
可以对自己使用挽尊卡咯~
◆
◆
该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
顶吧主一个!


  • 125.70.242.*
快试试吧,
可以对自己使用挽尊卡咯~
◆
◆
该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
还不如用delphi自己编一个。更好更快便于系统升级。


2026-01-13 06:23:37
广告
不感兴趣
开通SVIP免广告
  • 123.73.88.*
快试试吧,
可以对自己使用挽尊卡咯~
◆
◆
该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
可以交个朋友吗?请到 www.brsbox.com/vba8 看看我的VBA软件。


  • 139.95.251.*
快试试吧,
可以对自己使用挽尊卡咯~
◆
◆
该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

     Dim node As IXMLDOMNode
     On Error GoTo IGCTMObjectFactoryTrap
     Set node = par_WSMLNode.Attributes.getNamedItem("targetClassName")
     Set IGCTMObjectFactory_CreateObject = Nothing
     If Not (node Is Nothing) Then
         Select Case node.nodeValue
             Case "struct_RealTimeLotInfo"
                 Set IGCTMObjectFactory_CreateObject = New struct_RealTimeLotInfo
         End Select
     End If
Exit Function
IGCTMObjectFactoryTrap:
     Err.Raise Err.Number, "clsof_Factory_LotDetailServ", Err.Description
End Function
3. clsws_LotDetailService
'*****************************************************************
'This class was created by the Microsoft Office 2003 Web Services Toolkit.
'
'Created: 6/29/2010 09:58:27 AM
'
'Description:
'This class is a Visual Basic for Applications class representation of the Web service
'as defined by http://ssgpmes03/RealTimeLotInfo_WS/LotInfoService.asmx?WSDL.
'
'To Use:
'Dimension a variable as new clsws_LotDetailService, and then write code to
'use the methods provided by the class.
'Example:
' Dim ExampleVar as New clsws_LotDetailService
' debug.print ExampleVar.wsm_GetRealTimeLotInfo("Sample Input")
'
'For more information, see Complex Types in Microsoft Office 2003
'Web Services Toolkit Help.
'
'Changes to the code in this class may result in incorrect behavior.
'
'*****************************************************************
'Dimensioning private class variables.
Private sc_LotDetailService As SoapClient30
Private Const c_WSDL_URL As String = "http://ssgpmes03/RealTimeLotInfo_WS/LotInfoService.asmx?WSDL"
Private Const c_SERVICE As String = "LotDetailService"
Private Const c_PORT As String = "LotDetailServiceSoap"
Private Const c_SERVICE_NAMESPACE As String = "http://lotdetailservice/"
Private Sub Class_Initialize()
     '*****************************************************************
     'This subroutine will be called each time the class is instantiated.
     'Creates sc_ComplexTypes as new SoapClient30, and then
     'initializes sc_ComplexTypes.mssoapinit2 with WSDL file found in
     'http://ssgpmes03/RealTimeLotInfo_WS/LotInfoService.asmx?WSDL.



  • 139.95.251.*
快试试吧,
可以对自己使用挽尊卡咯~
◆
◆
该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

     '*****************************************************************
     Dim str_WSML As String
     str_WSML = "<servicemapping>"
     str_WSML = str_WSML & "<service name='LotDetailService'>"
     str_WSML = str_WSML & "<using PROGID='MSOSOAP.GenericCustomTypeMapper30' cachable='0' ID='GCTM'/>"
     str_WSML = str_WSML & "<types>"
     str_WSML = str_WSML & "<type name='RealTimeLotInfo' targetNamespace='http://lotdetailservice'/ uses='GCTM' targetClassName='struct_RealTimeLotInfo'/>"
     str_WSML = str_WSML & "</types>"
     str_WSML = str_WSML & "</service>"
     str_WSML = str_WSML & "</servicemapping>"
     Set sc_LotDetailService = New SoapClient30
     sc_LotDetailService.MSSoapInit2 c_WSDL_URL, str_WSML, c_SERVICE, c_PORT, c_SERVICE_NAMESPACE
     'Use the proxy server defined in Internet Explorer's LAN settings by
     'setting ProxyServer to <CURRENT_USER>
     sc_LotDetailService.ConnectorProperty("ProxyServer") = "<CURRENT_USER>"
     'Autodetect proxy settings if Internet Explorer is set to autodetect
     'by setting EnableAutoProxy to True
     sc_LotDetailService.ConnectorProperty("EnableAutoProxy") = True
     Set sc_LotDetailService.ClientProperty("GCTMObjectFactory") = New clsof_Factory_LotDetailServ
End Sub
Private Sub Class_Terminate()
     '*****************************************************************
     'This subroutine will be called each time the class is destructed.
     'Sets sc_ComplexTypes to Nothing.
     '*****************************************************************
     'Error Trap
     On Error GoTo Class_TerminateTrap
     Set sc_LotDetailService = Nothing
Exit Sub
Class_TerminateTrap:
     LotDetailServiceErrorHandler ("Class_Terminate")
End Sub
Private Sub LotDetailServiceErrorHandler(str_Function As String)
     '*****************************************************************
     'This subroutine is the class error handler. It can be called from any class subroutine or function
     'when that subroutine or function encounters an error. Then, it will raise the error along with the



  • 楠亚6
  • 初涉江湖
    1
该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
如何用VBA 将Excel中的数据发布到web 服务器上,供各个地方的人访问?


登录百度账号

扫二维码下载贴吧客户端

下载贴吧APP
看高清直播、视频!
  • 贴吧页面意见反馈
  • 违规贴吧举报反馈通道
  • 贴吧违规信息处理公示
  • 首页 上一页 1 2
  • 21回复贴,共2页
  • ,跳到 页  
<<返回vba吧
分享到:
©2026 Baidu贴吧协议|隐私政策|吧主制度|意见反馈|网络谣言警示