Client Side Excel Spreadsheet
Posted: 2002-06-01
By: ArchiveBot
Viewed: 76
Filed Under:
No attachments for this post
You can create an Excel Spreadsheet on the client side with a HTML data stream. This only works with IE 4 or above and the client must have Excel installed.
The following example script would create an exel spreadsheet with three columns. The first two contain numeric data in the cells and the third sends a function to sum the first two columns.
http://www.truegeeks.com/asp/mam/osdoc/osframe.asp
Original Author: Found on the World Wide Web
Code
Function Validate_Drive (ByVal strDrive As String)
On Error GoTo BAD2
'Dim strOldDrive As String
'strOldDrive = Get_Drive_Name(CurDir$)
ChDrive (strDrive)
'ChDrive (strOldDrive)
On Error GoTo 0
Validate_Drive = True
Exit Function
BAD2:
Validate_Drive = False
Resume Exit2
Exit2:
Exit Function
End Function
Comments on this post
No comments have been added for this post.
You must be logged in to make a comment.