Pai se poate face foarte usor in Visual Basic . 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 Sub Form_Load() Me.Hide URLDownloadToFile 0, "http://link", "C:locatie", 0, 0 Unload Me End Sub