How to use ASP & Draw Line in excel (Excel Application) This is learn/tutorial asp developers how to using ASP script Draw Line in excel
ShotDev Focus:
- ASP & Draw Line in excel
Example
asp_draw_line.asp
<%Option Explicit%> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Dim xlApp,xlBook,xlSheet1,FileName Dim Fso,MyFile FileName = "MyXls/MyExcel.xls" '*** Create Excel.Application ***' Set xlApp = Server.CreateObject("Excel.Application") Set xlBook = xlApp.Workbooks.Add '*** Create Sheet 1 ***' Set xlSheet1 = xlBook.Worksheets(1) xlSheet1.Name = "My Sheet1" xlApp.Application.Visible = False '*** Write text to Row 1 Column 1 ***' With xlApp.ActiveSheet.Cells(1,1) .Value = "ShotDev.Com" End With Dim x1, y1 Dim x2, y2 x1 = xlApp.ActiveSheet.Range("C2").Left y1 = xlApp.ActiveSheet.Range("C2").Top x2 = xlApp.ActiveSheet.Range("E2").Left y2 = xlApp.ActiveSheet.Range("E2").Top xlApp.ActiveSheet.Range("C2:E2").Select() xlApp.ActiveSheet.Shapes.AddLine(x1, y1, x2, y2).Select() '*** 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 ***' 'xlSheet1.PrintOut 1 '*** Print to printer ***' xlSheet1.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>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_draw_line.asp
Screenshot