24.01.2013, 01:55
Quote:
It have a function to download images form a custom web (for skins, vehicles, etc).
If you want to see it: (It's inside Functions.vb) Код:
Public Function LoadImageFromURL(ByVal url As String) As Image Try Dim Web As New System.Net.WebClient Dim Img As Byte() = Web.DownloadData(url) Dim mStream As New MemoryStream(Img) Return Image.FromStream(mStream) Catch ex As Exception Return My.Resources.N_A End Try End Function |
Still I've one problem, how do I "install" the resources provided in ****** code page?
I've tried a few ways without success...