Support Forums
VB.NET Computer Information [SRC] - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18)
+---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19)
+---- Thread: VB.NET Computer Information [SRC] (/showthread.php?tid=7253)

Pages: 1 2 3 4


RE: VB.NET Computer Information [SRC] - d3athstar - 05-17-2011

Or you could use:
DateAndTime.Now


RE: VB.NET Computer Information [SRC] - Inventor - 05-18-2011

Thank you for this!

Inventor1


RE: VB.NET Computer Information [SRC] - Injection - 05-19-2011

great share.
thanks will use


RE: VB.NET Computer Information [SRC] - stephen5565 - 05-20-2011

Well I already found this on another forum and btw thanks for sharing ( because I forgot that forum xD Smile )


RE: VB.NET Computer Information [SRC] - MineCrack - 01-07-2012

Just wondering, how would I get the HWID?


RE: VB.NET Computer Information [SRC] - Fragma - 01-07-2012

(01-07-2012, 09:49 AM)MineCrack Wrote: Just wondering, how would I get the HWID?

Here:
http://thebotnet.com/programming/92494-tut-hwid-login-to-your-apps/


RE: VB.NET Computer Information [SRC] - BreShiE - 01-07-2012

I made a similar thing to this in VB6, but instead was a program rather than the code. It didn't go into this great of detail but included the PC name, PC owners username, external and internal IP address. I myself use it quite often, it comes in handy for me.


RE: VB.NET Computer Information [SRC] - Fragma - 01-07-2012

(01-07-2012, 10:49 AM)BreShiE Wrote: I made a similar thing to this in VB6, but instead was a program rather than the code. It didn't go into this great of detail but included the PC name, PC owners username, external and internal IP address. I myself use it quite often, it comes in handy for me.

I think pretty much everyone starting off programming makes something similar to this due to how basic it is to do.
Most just grab what's given to them by Visual Basic though rather than grabbing from the registry manually, (I say manually even though it is pretty much also given to you on a plate, but does require more thinking than stuff such as "Textbox1.text = My.Computer.Info.OSFullName")


RE: VB.NET Computer Information [SRC] - AceInfinity - 01-07-2012

(01-07-2012, 09:49 AM)MineCrack Wrote: Just wondering, how would I get the HWID?

Look into WMI objects, it's fairly easy. Smile

(01-07-2012, 10:53 AM)Fragma Wrote: I think pretty much everyone starting off programming makes something similar to this due to how basic it is to do.
Most just grab what's given to them by Visual Basic though rather than grabbing from the registry manually, (I say manually even though it is pretty much also given to you on a plate, but does require more thinking than stuff such as "Textbox1.text = My.Computer.Info.OSFullName")

That's when you try moving over to WMI objects as the next step in your learning process. A bit more advanced, but still super simple...


RE: VB.NET Computer Information [SRC] - MineCrack - 01-07-2012

(01-07-2012, 09:58 AM)Fragma Wrote: Here:
http://thebotnet.com/programming/92494-tut-hwid-login-to-your-apps/
Not a really god tut, it's not made to work without requirements...