fb:porticula NoPaste
Download and open
Uploader: | Bull-T07 |
Datum/Zeit: | 25.01.2008 16:19:16 |
Screen 18
Print "schoen blau oder?"
BLoad "blau.bmp"
Dim URLDownloadToFile as function ( _
ByVal pCaller As Long, _
ByVal szURL As zString ptr, _
ByVal szFileName As zString ptr, _
ByVal dwReserved As Long, _
ByVal lpfnCB As Long) As Long
Dim lR As Long
Dim sURL As String
Dim sFile As String
Dim library As Any Ptr
library=dylibload( "urlmon.dll" )
URLDownloadToFile=dylibsymbol(library, "URLDownloadToFileA" )
sURL = "http://img169.imageshack.us/img169/329/urhvr5.png"
sFile = "C:\urh.bmp"
lR = URLDownloadToFile(0, sURL, sFile, 0, 0)
CLS
bload("C:\urh.bmp")
Sleep
END