如何在PowerBuilder 9.0中把当前数据窗口数据保存为excel文档

我想在主菜单里设置一个按钮,主要实现把当前数据窗口(是指当前处于激活状态的数据窗口,并不是特定的某个窗口)的数据另存为excel表格的目的,要求要有保存路径和输入保存文件... 我想在主菜单里设置一个按钮,主要实现把当前数据窗口(是指当前处于激活状态的数据窗口,并不是特定的某个窗口)的数据另存为excel表格的目的,要求要有保存路径和输入保存文件名的对话框(如果可能的话,这种效果尽量和保存office文档一样的对话框)。
我是新手,希望能有相关代码。。在此先谢谢了。。
楼下的,请把相关信息说明一下吧。我怎么有点看不懂呀???(我见你的答案在我的第二个问题里也拷贝了一份,那明显是错误的!!)好多语句我都没见过。。。。说清楚一点,我好给你加分呀。。
展开
 我来答
百度网友5c308a4
推荐于2016-09-11
知道答主
回答量:3
采纳率:0%
帮助的人:6.8万
展开全部
我是这样写的,不知道对你有没有帮助,首先写一个外部通用函数(带两个参数,第一个参数为导出excel的标题,第二个为要导出的数据窗口,传递方式都是value):f_export_excel(string rptheadtxt,datawindow ad_dw)

Int li_value
String ls_path,ls_fname
String ls_tempfilename

li_value = GetFileSaveName("请选择导出文件", &
+ ls_path, ls_fname, "XLS", &
+ "Excel文件 (*.xls), *.xls," &
+ "Word 文件 (*.doc), *.doc,")
IF li_value <> 1 THEN RETURN 0

SetPointer(hourglass!)

// 删除原文件
IF FileExists(ls_path) THEN
IF MessageBox('提示信息', '原文件已经存在, 是否覆盖 ?', Question!, YesNo!) = 2 THEN RETURN 0
IF NOT FileDelete(ls_path) THEN
MessageBox('提示信息', '删除原文件失败, 该文件可能正在被使用 !')
RETURN 0
END IF
END IF

ls_tempfilename = "temp_excel" + String( Today( ), 'yyyymmddhhmmssfff' )

IF ad_dw.SaveAsAscii ( ls_tempfilename, "~t", "") = -1 THEN
MessageBox("提示信息", "导出数据出错. 不能写入文件 !", Exclamation!)
RETURN 0
END IF

// 去掉行间隔
Integer li_FileNum, li_FileNum_temp, li_len = Len( "<tr>~r~n<tr>" )
String ls_FileRead
Long ll_pos = 1

li_FileNum = FileOpen( ls_path, StreamMode!, Write!, LockWrite!, Append!)
li_FileNum_temp = FileOpen( ls_tempfilename, StreamMode! )

DO WHILE FileRead( li_FileNum_temp, ls_FileRead ) > li_len
ll_pos = Pos( ls_FileRead, "<tr>~r~n<tr>", 1 )
DO WHILE ll_pos > 0
ls_FileRead = Replace( ls_FileRead, ll_pos, li_len, "<tr>" )
ll_pos = Pos( ls_FileRead, "<tr>~r~n<tr>", ll_pos )
LOOP
FileWrite( li_FileNum, ls_FileRead )
LOOP
FileClose( li_FileNum )
FileClose( li_FileNum_temp )
FileDelete( ls_tempfilename )

MessageBox('提示信息','数据导出成功 !', Exclamation!)
RETURN 1

调用规则:f_export_excel(parent.title,dw_1)
华夏日长兴
2010-02-27 · TA获得超过9592个赞
知道大有可为答主
回答量:6305
采纳率:85%
帮助的人:3663万
展开全部
global type uf_dwsaveas_excel from function_object
end type

forward prototypes
global function integer uf_dwsaveas_excel (datawindow datawin)
end prototypes

global function integer uf_dwsaveas_excel (datawindow datawin);integer li_rtn,ii,li_asc
string ls_name,ls_pathname
boolean lb_exist
if datawin.RowCount()<1 then
MessageBox("系统提示","请先检索数据再导出至Excel!")
return -1
end if
li_rtn=GetFileSaveName("保存文件",ls_pathname,ls_name,"xls","Excel文件(*.xls),*.xls")

if li_rtn=1 then
lb_exist = FileExists(ls_pathname)
IF lb_exist THEN
li_rtn = MessageBox("系统提示",ls_pathname+"已经存在,是否覆盖?",question!,YesNo!)
end if
if li_rtn=1 then
li_rtn=datawin.saveas(ls_pathname,excel8!,true)
if li_rtn=1 then
else
MessageBox("系统提示","导出数据失败!")
return -1
end if
else
return -1
end if
else
return -1
end if

/**********以下程序将导出的EXCEL英文标题替换为汉字*********/

long numcols,numrows,c,r
OLEObject xlapp,xlsub
int ret
numcols = long(datawin.Object.DataWindow.Column.Count)
numrows = datawin.RowCount()
// 产生oleobject的实例
xlApp = Create OLEObject
//连接ole对象
ret = xlApp.ConnectToNewObject("Excel.Sheet" )
if ret < 0 then
MessageBox("系统提示","连接到EXCEL失败,请确认您的系统是否已经安装EXCEL!~r~n"&
+"错误代码:"+string(ret))
return -1
end if
// 打开EXCEL文件
xlApp.Application.Workbooks.Open(ls_pathname)
////使文件可见
//xlApp.Application.Visible = true

// 得到活动工作表的引用,改善程序性能
xlsub = xlapp.Application.ActiveWorkbook.Worksheets[1]
string ls_colname,ls_text,ls_modistr,ls_col
//取字段名更改为对应的文本text值
FOR c=1 to numcols
ls_col="#"+string(c)+".name"
ls_colname=datawin.describe(ls_col)
ls_modistr=ls_colname+"_t.text"
ls_text=datawin.describe(ls_modistr)
xlsub.cells[1,c]=ls_text
NEXT
xlapp.Application.ActiveWorkBook.Save()
//xlapp.Application.Displayalerts=true
xlApp.Application.Quit()
xlApp.DisConnectObject()
Destroy xlapp

MessageBox("提示信息","导出数据成功!")
return 1

end function
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式