壹佰网|ERP100 - 企业信息化知识门户

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1508|回复: 5

[新手上路] 如何使EXCEL电子表格和WORD文档在lotus里更好地显示?

[复制链接]
发表于 2004/4/5 00:07:14 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622  。

您需要 登录 才可以下载或查看,没有帐号?注册

x
新建了个“文档”数据库,但想在里面插入电子表格或WORD文档时(复制)格式就和原来的全都变样了,只有以附加的形式添加上去。每次看的时候也要点击“查看”或调出office查看。

如何使EXCEL电子表格和WORD文档在lotus里更好地显示?我发现利用lotus的查看功能看到的电子表格和word文档的格式都是不变的。


 楼主| 发表于 2004/4/8 20:12:43 | 显示全部楼层
up
发表于 2004/4/10 10:58:30 | 显示全部楼层
 楼主| 发表于 2004/4/17 17:30:54 | 显示全部楼层
up
发表于 2004/4/19 16:37:12 | 显示全部楼层
数据导到excel同时生成图像
Sub Click(Source As Button)
        'On Error ErrOLECantCreate Goto errh
        On Error 207 Goto errh
        Dim xlapp As Variant 'declare variable to hold the reference
        Dim buttonhide As String
        Dim workspace As New notesuiworkspace
        Dim uidoc As notesuidocument
        Set uidoc=workspace.Currentdocument
        Set xlapp=createobject("excel.application")
        xlapp.workbooks.add
        xlapp.visible=True
        For i=2 To 11
                xlapp.range("A"&i).select
                xlapp.activecell.formular1c1 =uidoc.fieldgettext("keyword"&(i-1))
                xlapp.range("B"&i).select
                xlapp.activecell.formular1c1 =uidoc.FieldGetText("count"&(i-1))
               
        Next
        xlapp.range("A2:B23").select
        Call xlapp.selection.sort(xlapp.range("B2"),2)
        xlapp.charts.add
        xlapp.activechart.charttype=51 'xlcolumnclustered
        xlapp.activechart.setsourcedata
        xlapp.sheets("sheet1").range("A2:B9"),2
        xlapp.activechart.seriescollection(1).name="=""notes chart"""
        xlapp.activechart.location 2,"sheet1"'xllocationasobject
        With xlapp.activechart
                .astitle=True
                .charttitle.characters.text=uidoc.FieldgetText("title")
                .axes(1,1).hastitle=True 'xlcategory,xlprimary
                .axes(1,1).axistitle.characters.text=uidoc.FieldGetText("x_axis_label")
                .axes(2,1).hastitle=True 'xlvalue,xlprimary
                .axes(2,1).axistitle.characters.text=uidoc.FieldGetText("y_axis_data")
                .applydatalabels 2,True 'xldatalabelsshowvalue
                .hasdatatable=False
        End With
        xlapp.activesheet.shapes("chart 1").scaleheight 1.5,0,0
        xlapp.activesheet.shapes("chart 1").scalewidth 1.9,0,0
        Exit Sub
errh:
        buttonhide="yes"
        Resume Next       
End Sub
Sub Terminate
        On Error Resume Next
        xlapp.displayalerts=False
        xlapp.quit 'use the quit method to close
        Set xlapp=Nothing 'release the reference
End Sub
发表于 2004/4/20 08:46:22 | 显示全部楼层

可是以上代码输在那里?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|小黑屋|手机版|壹佰网 ERP100 ( 京ICP备19053597号-2 )

Copyright © 2005-2012 北京海之大网络技术有限责任公司 服务器托管由互联互通
手机:13911575376
网站技术点击发送消息给对方83569622   广告&合作 点击发送消息给对方27675401   点击发送消息给对方634043306   咨询及人才点击发送消息给对方138011526

GMT+8, 2025/11/30 15:19 , Processed in 0.017361 second(s), 16 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表