![]() |
|
Arcane.cfg's Webpage Source Code Obtainer [Source Code Included] - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.li/Forum-Visual-Basic-NET-Framework) +--- Thread: Arcane.cfg's Webpage Source Code Obtainer [Source Code Included] (/Thread-Arcane-cfg-s-Webpage-Source-Code-Obtainer-Source-Code-Included) |
Arcane.cfg's Webpage Source Code Obtainer [Source Code Included] - ArcaneFx - 05-16-2012 I was bored as hell, had nothing to do. I couldn't think of anything else to make when suddenly the idea of such a program crossed my mind. I did a quick search only to find out that such a program was never posted here. Enough with the blabbering, here's the download link: http://www.mediafire.com/?in4cjkdkfio4x29 (Source code & Executable) VirusTotal Scan report -> here. Feel free to leech/rip/w/e.:blackhat: Arcane.cfg. Arcane.cfg's Webpage Source Code Obtainer [Source Code Included] - ArcaneFx - 05-16-2012 I was bored as hell, had nothing to do. I couldn't think of anything else to make when suddenly the idea of such a program crossed my mind. I did a quick search only to find out that such a program was never posted here. Enough with the blabbering, here's the download link: http://www.mediafire.com/?in4cjkdkfio4x29 (Source code & Executable) VirusTotal Scan report -> here. Feel free to leech/rip/w/e.:blackhat: Arcane.cfg. RE: Arcane.cfg's Webpage Source Code Obtainer [Source Code Included] - ArkPhaze - 05-17-2012 I thought it looked that way, but you have a progress bar that does absolutely nothing? lol... This is basically 5-10 lines of code max if the code was optimized (uncounted) Edit: Other than the SFD, and all the other enabled, visible stuff, and the useless progressbar and timer: Code: Private Sub GetData()
TextBox1.Clear()
TextBox1.Text = New WebClient().DownloadString("url")
End Sub
Private Sub ExportData()
Using sr As New StreamWriter("filepath")
sr.Write(TextBox1.Text)
End Using
End SubRE: Arcane.cfg's Webpage Source Code Obtainer [Source Code Included] - ArcaneFx - 05-18-2012 (05-17-2012, 06:09 AM)PhazeShift Wrote: I thought it looked that way, but you have a progress bar that does absolutely nothing? lol... This is basically 5-10 lines of code max if the code was optimized (uncounted)Strange, I don't remember posting this here at all. Anyway, yes, the progress bar does nothing. I just added it to use up the vacant space. By the way, the SFD and all the other enabled, visible stuff (quoting you), are very important for a complete program. RE: Arcane.cfg's Webpage Source Code Obtainer [Source Code Included] - ArkPhaze - 05-18-2012 I never said it wasn't, i'm saying that essentially because these are the basics, I did not include them in the core example of a similar code that would do the trick for such an app as yours. This isn't complicated stuff here. Basically taking out all the glitter and getting to the heart of your code, what i've posted above is all this really is... RE: Arcane.cfg's Webpage Source Code Obtainer [Source Code Included] - ArcaneFx - 05-18-2012 (05-18-2012, 04:19 PM)PhazeShift Wrote: I never said it wasn't, i'm saying that essentially because these are the basics, I did not include them in the core example of a similar code that would do the trick for such an app as yours. This isn't complicated stuff here. Basically taking out all the glitter and getting to the heart of your code, what i've posted above is all this really is... Correct...but your point is? RE: Arcane.cfg's Webpage Source Code Obtainer [Source Code Included] - ArkPhaze - 05-19-2012 For it being so simple i'd rather just use Ctrl + U in my browser... RE: Arcane.cfg's Webpage Source Code Obtainer [Source Code Included] - ArcaneFx - 05-19-2012 (05-19-2012, 06:55 AM)PhazeShift Wrote: For it being so simple i'd rather just use Ctrl + U in my browser... You may do as you please. I do not see how anything you do affecting me in anyway whatsoever. |