Skip to content
WJunction - Webmaster Forum

My Comp Info Fetcher !!! - Mind Freak

Status
Not open for further replies.
[SLIDE]http://screensnapr.com/u/t41usi.png[/SLIDE]

This App Fetches Your:-

  • Computer Name
  • User Name
  • OS Name
  • OS Version
  • OS Platform
  • Available Physical Memory
  • Caps Lock On or OFF
Was Getting Bored so made it :)

And Yea You will net framework installed on your pc to get it to run :)

Download Link :-
Code:
http://rapidshare.com/files/417715944/CompInfoFetcher.rar
 

10 comments

Source Code to the app :)
Code:
Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        TextBox1.Text = My.Computer.Name
        TextBox2.Text = My.User.Name
        TextBox3.Text = My.Computer.Info.OSFullName
        TextBox4.Text = My.Computer.Info.OSVersion
        TextBox5.Text = My.Computer.Info.OSPlatform
        TextBox6.Text = My.Computer.Info.AvailablePhysicalMemory
        TextBox7.Text = My.Computer.Keyboard.CapsLock
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        TextBox1.Clear()
        TextBox2.Clear()
        TextBox3.Clear()
        TextBox4.Clear()
        TextBox5.Clear()
        TextBox6.Clear()
        TextBox7.Clear()
    End Sub
End Class
 
Please keep discussion on topic about the app. If you dont like it or think there is a better solution, well to bad so sad.

+1 for Mind Freak at least trying to code something
 
Status
Not open for further replies.

About the author

Mind Freak™
Active Member · Joined
1,635
Messages
766
Reactions
113
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom