Skip to content

Instantly share code, notes, and snippets.

@dck-jp
Created February 13, 2014 11:59
Show Gist options
  • Save dck-jp/8973852 to your computer and use it in GitHub Desktop.
Save dck-jp/8973852 to your computer and use it in GitHub Desktop.
A part of WinInet.bas in Ariawase
#If VBA7 And Win64 Then
Private Sub SaveDownloading(ByVal hCnn As LongPtr, ByVal svPath As String)
#Else
Private Sub SaveDownloading(ByVal hCnn As Long, ByVal svPath As String)
#End If
Dim strm As Object: Set strm = CreateAdoDbStream(adTypeBinary)
strm.Open
' 中略
strm.Close
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment