ecommerce web developer development freelance website designer India
The URLDownloadToFile API is available on all versions of the Windows operating system (except Win3, WinNT3.x). By
passing the remote file name and the local file path and name, the API downloads the bits of the specified file saving them
as the target name. The function works with all file types - plain text, images, html, mpg, wav and zip files etc. without
modification to the routine or concern for the file being downloaded, nor is there any apparent size restriction or limitation.
The downloaded file can then be either opened and displayed in VB (as the illustration shows for a html file), or the path
and filename can be passed to ShellExecute or ShellExecuteEx for opening in the associated application. For multiple files
It downloads them one at a time, and the wrapper returns true if the download of each file was successful.
The pCaller member of the API is used to specify the address of the controlling IUnknown interface when the call is used
in an ActiveX controls. For use in an application, 0& (null) is passed.

This code is loosely based on a msnews newsgroup posting by Matthew Gates.


BAS Module Code
None.

--------------------------------------------------------------------------------


Form Code

Drop a command button (Command1) and a text box (Text1) onto a form and set the Multiline property to True. Add the
following code and change the remote URL to a valid file on a server, and the local file name to valid a valid folder on your
system:

--------------------------------------------------------------------------------

Option Explicit

Private Declare Function URLDownloadToFile Lib "urlmon" _
Alias "URLDownloadToFileA" _
(ByVal pCaller As Long, _
ByVal szURL As String, _
ByVal szFileName As String, _
ByVal dwReserved As Long, _
ByVal lpfnCB As Long) As Long

Private Const ERROR_SUCCESS As Long = 0

Private Sub Form_Load()
Command1.Caption = "Download File"
End Sub


Private Sub Command1_Click()

Dim sourceUrl As String
Dim targetFile As String
Dim hfile As Long

sourceUrl = "http://www.mvps.org/vbnet/faq/main/fileloadtext.htm"
targetFile = "c:\deleteme.htm"

Label1.Caption = sourceUrl
Label2.Caption = targetFile

If DownloadFile(sourceUrl, targetFile) Then

hfile = FreeFile
Open targetFile For Input As #hfile
Text1.Text = Input$(LOF(hfile), hfile)
Close #hfile

End If

End Sub


Public Function DownloadFile(ByVal sURL As String, _
ByVal sLocalFile As String) As Boolean

Dim lngRetVal As Long

'if the API returns ERROR_SUCCESS (0),
'return True from the function
DownloadFile = URLDownloadToFile(0&, _
sURL, _
sLocalFile, _
0&, _
0&) = ERROR_SUCCESS

End Function

Downloading Files using URLDownloadToFile

901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050

Express News India | Freelance ecommerce web development India