Search results for query: *

  1. C

    Question how to use file from website

    oh i see, but when i used WriteAllBytes, i didn't see a file being created on my desktop unlike DownloadFile, unless the file is being hidden in a folder somewhere
  2. C

    Question how to use file from website

    i want to use the DLL as a resource because when i use DownloadFile, i can see that it places a file at the same directory as my exe, which is something i don't want. when i use WriteAllBytes, it doesn't "create" the file, and it uses the DLL directly from My.Resources. i was wondering if i can...
  3. C

    Question how to use file from website

    Dim tempFilePath As String = IO.Path.GetTempFileName My.Computer.Network.DownloadFile("https://github.com/Carat1/File/raw/master/File.dll", tempFilePath) oh yeah, i forgot to add that, but i still need help on WriteAllBytes
  4. C

    Question how to use file from website

    hello, i need help on using a file i downloaded using the code below. currently im using My.Resources for my DLL file, but i want to use the DLL from my github because i do updates on my file periodically. My.Computer.Network.DownloadFile("https://github.com/Carat1/File/raw/master/File.dll"...
Back
Top