|
Lets you send file from a client to www server over http connection using IE. The file is sent as a result of type=file form field. Author: Antonin Foller Code: ASP 3.0 & VBScript |
| |
Overall Rating:
 User Rated
| |
factual and functional  Written by Anonymous User (#1333-68) from Hannover, Germany (Tuesday, April 10, 2007)
 |
Strengths: usable code, no suuneseful suggestions Weaknesses: sharp, shrill colours in the page design Details: A real way to write a tutorial for working programmers Review Based On: using demo only |
works as is and does the job  Written by Jacques van der Hofstede from Netherlands (Sunday, August 27, 2006) Writer is with: http://idoit.nl
 |
Strengths: works as is and does the job Weaknesses: it did not tackle one problem, that is using the code directly after making a new database Details: In the following test, the call wait is neccessary to avoid runtime error 70: permission denied.
Public Sub test()
Dim strFile As String
strFile = "c:\a.mdb"
Dim appAccess As Access.Application
If Dir(strFile) <> "" Then
Kill (strFile)
End If
Set appAccess = CreateObject("Access.Application")
appAccess.NewCurrentDatabase strFile
'
' fill new database
'
appAccess.CurrentDb.Close
Set appAccess = Nothing
Call wait(0.1)
Call UploadFile("http://........", strFile)
End Sub
Public Sub wait(PauseTime As Single)
Dim totdat
totdat = Timer + PauseTime ' Set start time.
Do While Timer < totdat
DoEvents ' Yield to other processes.
Loop
End Sub
Review Based On: 1 Month(s) of usage |
great help  Written by Anonymous User (#1504-234) from Twin Falls, Idaho (Friday, August 15, 2003)
 |
Strengths: it has already saved us many headaches in automation Weaknesses: but it's short on text. Details: although the article does cover the subject we've been researching for weeks, and provides good sample code for us to work from, it's seriously short on documentation for that code. it could *really* use more explanatory text. Review Based On: 1 Day(s) of usage |
| |
|