get.it
Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
8 posts
Page 1 of 1
Hi guys, this is one of my new programs I call it: Get.it! what it does is uses the textbox and gets a piece of information from the PC.
Tutorial:
Items:
1 textbox
1 label
1 button
1 form
button1 text = get.it or something like that
form1 text = <application name>
next: the coding
form 1 code:
the base code is just
Tutorial:
Items:
1 textbox
1 label
1 button
1 form
button1 text = get.it or something like that
form1 text = <application name>
next: the coding
form 1 code:
Code: Select all
next is button 1's code:
Label1.Text = ""
Code: Select all
and add anything else you want to the code or even edit the existing one like delete the get. or change virtmem etc.If TextBox1.Text = "get.physmem" Then
Label1.Text = My.Computer.Info.TotalPhysicalMemory
End If
If TextBox1.Text = "get.availablephysmem" Then
Label1.Text = My.Computer.Info.AvailablePhysicalMemory
End If
If TextBox1.Text = "get.OSFN" Then
Label1.Text = My.Computer.Info.OSFullName
End If
If TextBox1.Text = "get.virtmem" Then
Label1.Text = My.Computer.Info.TotalVirtualMemory
End If
If TextBox1.Text = "get.availablevirtmem" Then
Label1.Text = My.Computer.Info.AvailableVirtualMemory
End If
If TextBox1.Text = "get.time" Then
Label1.Text = My.Computer.Clock.LocalTime.Hour & ":" & My.Computer.Clock.LocalTime.Minute
End If
the base code is just
Code: Select all
if <textbox name>.text = "<text>" then
<label name> = <label text>

Hi Rocky4126
Interesting, I will build this and see what its like
Cheers
Chris
Interesting, I will build this and see what its like
Cheers
Chris
It gives your disk Total and Free Memory, gives your Total and Free Virutal Memory, gives your OS Name/Version and also gives your Time&Date
hi again! Thanks, yeah you can add more codes to it all that is is a demo version but I decided to add some more codes to it after. Sorry I can't post source btw, it's on my laptop but I might add it later depends on if I get on it tonight.

8 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023