保存桌面快捷方式 - - 设为首页 - 手机版
凹丫丫旗下网站:四字成语大全 - 故事大全 - 范文大全
您现在的位置: 范文大全 >> 理工论文 >> 计算机论文 >> 正文

证券公司法人清算系统解决方案


k.Application
InitializeOutlook = True
Init_End:
    Exit Function
Init_Err:
InitializeOutlook = False
Resume Init_End
End Function

Function CreateMail(astrRecip As Variant, _
strSubject As String, _
strMessage As String, _
Optional astrAttachments As Variant) As Boolean
Dim objNewMail As Outlook.MailItem
Dim blnResolveSuccess As Boolean

On Error GoTo CreateMail_Err

If golapp Is Nothing Then
If InitializeOutlook = False Then
MsgBox "Unable to initialize Outlook Application " _
& "or NameSpace object variables!"
Exit Function
End If
End If

Set golapp = New Outlook.Application
Set objNewMail = golapp.CreateItem(olMailItem)

With objNewMail
.Recipients.Add astrRecip
blnResolveSuccess = .Recipients.ResolveAll
.Attachments.Add astrAttachments
.Subject = strSubject
.Body = strMessage
If blnResolveSuccess Then
.Send
Else
MsgBox "Unable to resolve all recipients. Please check " _
& "the names."
.Display
End If
End With
CreateMail = True

CreateMail_End:
Exit Function
CreateMail_Err:
CreateMail = False
Resume CreateMail_End

End Function

4.5 划分数据库对象

把包含表的数据库称为表数据库,而包含其它对象的数据库称为应用程序数据库。通过从应用程序数据库链接到表数据库,就把这两个数据库连接起来了。采用这种策略的理由是:

● 可维护性

● 性能

● 可扩展性

如果已经设计了应用程序,并且在同样的数据库中包括了所有的表和其他数据库对象,可以使用Access的数据库拆分向导("工具","数据库实用工具","拆分数据库")来帮助实现数据库的划分。

5、法人清算系统的应用情况

现该系统在大通证券股份有限公司运行良好,极大减轻了财会人员工作强度,同时各种清晰、完善的数据报表加强了公司对于公司及下属营业部财务的监管力度,堵塞了漏洞。

6、法人清算系统的改进

现系统使用Microsoft Outlook建立及发送邮件,可以改进为通过公司局域网中的邮件服务器发送。

《证券公司法人清算系统解决方案(第3页)》
本文链接地址:http://www.oyaya.net/fanwen/view/175534.html

★温馨提示:你可以返回到 计算机论文 也可以利用本站页顶的站内搜索功能查找你想要的文章。