Do you want to convert the URL string into bytes OR get the bytes of the image that this URL is pointing towards?
1: 2: 3: 4: 5: 6: 7: 8: 9: 10:
Dim wc As New System.Net.WebClient Try Dim imageBytes() As Byte = wc.DownloadData("http://www.google.com/intl/en_ALL/images/srpr/logo1w.png") ' TODO:// work with byte data Catch ex As Exception MsgBox(ex.Message) Finally wc.Dispose() wc = Nothing End Try