 |
|
ขอตัวอย่าง Export Excel 1ไฟล์ : worksheet หลายอันครับ เฉพาะที่เป็น applition |
|
 |
|
|
 |
 |
|
ทำได้ครับ
Code (ASP Write Excel Multiple Sheet (Excel.Application))
<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP Excel.Application Tutorial</title>
</head>
<body>
<%
Dim xlApp,xlBook,xlSheet1,FileName
Dim Fso,MyFile
FileName = "MyXls/MyExcel.xls"
'*** Create Exce.Application ***'
Set xlApp = Server.CreateObject("Excel.Application")
Set xlBook = xlApp.Workbooks.Add
'*** Create Sheet 1 ***'
xlBook.Worksheets(1).Name = "My Sheet1"
xlBook.Worksheets(1).Select
'*** Write text to Row 1 Column 1 ***'
With xlApp.ActiveSheet.Cells(1,1)
.Value = "ThaiCreate.Com 1"
End With
'*** Write text to Row 1 Column 2 ***'
With xlApp.ActiveSheet.Cells(1,2)
.Value = "Mr.Weerachai Nukitram 1"
End With
'*** Create Sheet 2 ***'
xlBook.Worksheets(2).Name = "My Sheet2"
xlBook.Worksheets(2).Select
'*** Write text to Row 1 Column 1 ***'
With xlApp.ActiveSheet.Cells(1,1)
.Value = "ThaiCreate.Com 2"
End With
'*** Write text to Row 1 Column 2 ***'
With xlApp.ActiveSheet.Cells(1,2)
.Value = "Mr.Weerachai Nukitram 2"
End With
'*** Create Sheet 3 ***'
xlBook.Worksheets(3).Name = "My Sheet3"
xlBook.Worksheets(3).Select
'*** Write text to Row 1 Column 1 ***'
With xlApp.ActiveSheet.Cells(1,1)
.Value = "ThaiCreate.Com 3"
End With
'*** Write text to Row 1 Column 2 ***'
With xlApp.ActiveSheet.Cells(1,3)
.Value = "Mr.Weerachai Nukitram 3"
End With
xlBook.Worksheets(1).Select '*** Focus Sheet 1 ***'
'*** If Files Already Exist Delete files ***'
Set Fso = CreateObject("Scripting.FileSystemObject")
If (Fso.FileExists(Server.MapPath(FileName))) Then
Set MyFile = Fso.GetFile(Server.MapPath(FileName))
MyFile.Delete
End If
'*** Save Excel ***'
'xlBook.PrintOut 1 '*** Print to printer ***'
xlBook.SaveAs Server.MapPath(FileName)
xlApp.Application.Quit
'*** Quit and Clear Object ***'
Set xlSheet1 = Nothing
Set xlBook = Nothing
Set xlApp = Nothing
%>
Excel Created <a href="<%=FileName%>">Click here</a> to Download.
</body>
</html>
|
 |
 |
 |
 |
Date :
2010-06-21 14:58:14 |
By :
webmaster |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณมากน่ะครับ แต่ว่าผมอยากได้ในลักษณะ vb appilcation ที่ไม่ใช่เวปเพจหน่ะครับ
|
 |
 |
 |
 |
Date :
2010-06-21 15:55:17 |
By :
YAISUKE |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ใช้ได้เหมือนกันครับ ไม่ต่างกันเลยครับ
|
 |
 |
 |
 |
Date :
2010-06-21 17:41:12 |
By :
webmaster |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่ทราบว่า Dim xlApp,xlBook,xlSheet1,FileName กับ Dim Fso,MyFile เป็นตัวแปรประเภทอะไรครับ
แล้ว Imports ของ class ถ้าเป็น appilcation เป็นอะไรครับผมลองดูแล้วไม่เจอครับ พอดีสิ่งที่ผมกำลังทำอยู่นั้น อยากเอา Datatable ที่มีข้อมูลรายงานแต่ล่ะวันอยู่มาแบ่งเป็น worksheet แต่ล่ะวันเหมือนกันแค่นั้นล่ะครับรบกวนด้วยครับ
|
 |
 |
 |
 |
Date :
2010-06-24 10:04:54 |
By :
YAISUKE |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|