cmonhackns.n-stars.org
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Indonesian SWF Editor Community
 
HomeLatest imagesRegisterLog in
SELAMAT Datang Di Cmonhackns ===> Mulailah dari yang kecil... karena semua yang besar dulunya juga kecil..

 

 Membuat informasi sistem di VB 2010/2008

Go down 
5 posters
AuthorMessage
RieqyNS13
Moderator
Moderator
RieqyNS13


Jumlah posting : 379
Join date : 2011-01-16
Age : 26
Lokasi : chmod 0655 GetConfig.SQL

Membuat informasi sistem di VB 2010/2008 Empty
PostSubject: Membuat informasi sistem di VB 2010/2008   Membuat informasi sistem di VB 2010/2008 Icon_minitime1Tue Aug 09, 2011 5:36 pm

komponen :
6 Label
1 Timer

1) Susun komponen Label seperti gambar dibawah ini kemudian block semua Label dan ganti Locked pada Properties menjadi True :
[You must be registered and logged in to see this image.]

2) dan kemudian tambahkan Timer1,dan pada Properties Timer1 cari Enabled dan kita ganti dengan True, dan Interval kita ganti menjadi 1000
[You must be registered and logged in to see this image.]

3) Klik 2 kali pada Form1(Windows Form Application1),dan kemudian masukkan code berikut :
Code:
Label1.Text = "Available Physical Memory: " & My.Computer.Info.AvailablePhysicalMemory / 1024 / 1024 & " MB"
        Label2.Text = "Available Virtual Memory: " & My.Computer.Info.AvailableVirtualMemory / 1024 / 1024 & " MB"
        Label3.Text = "Operating System: " & My.Computer.Info.OSFullName & " " & My.Computer.Info.OSVersion
        Label4.Text = "Platform: " & My.Computer.Info.OSPlatform
        Label5.Text = "Physical Memory: " & My.Computer.Info.TotalPhysicalMemory / 1024 / 1024 & " MB"
        Label6.Text = "Virtual memory: " & My.Computer.Info.TotalVirtualMemory / 1024 / 1024 & " MB"

4) Kemudian pada Timer1,kita klik 2 kali dan masukkan code berikut :
Code:
Label1.Text = "Available Physical Memory: " & My.Computer.Info.AvailablePhysicalMemory / 1024 / 1024 & " MB"
        Label2.Text = "Available Virtual Memory: " & My.Computer.Info.AvailableVirtualMemory / 1024 / 1024 & " MB"




Last edited by RieqyNS13 on Fri Nov 25, 2011 12:08 am; edited 2 times in total
Back to top Go down
http://rieqyns13.net
Portgaz_D*Ace
Warga Lama
Warga Lama
Portgaz_D*Ace


Jumlah posting : 212
Join date : 2011-06-03
Lokasi : Depok-Sawangan

Membuat informasi sistem di VB 2010/2008 Empty
PostSubject: Re: Membuat informasi sistem di VB 2010/2008   Membuat informasi sistem di VB 2010/2008 Icon_minitime1Wed Aug 10, 2011 3:39 pm

nyoba dulu gan
Back to top Go down
Crusher
Moderator
Moderator
Crusher


Jumlah posting : 1158
Join date : 2011-04-26
Age : 111
Lokasi : Di Naruto.Lagi perang

Membuat informasi sistem di VB 2010/2008 Empty
PostSubject: Re: Membuat informasi sistem di VB 2010/2008   Membuat informasi sistem di VB 2010/2008 Icon_minitime1Mon Nov 21, 2011 9:40 am

tar hasilnya jadi apa gan?
Back to top Go down
1stKame
Sesepuh
Sesepuh
1stKame


Jumlah posting : 459
Join date : 2011-05-11

Membuat informasi sistem di VB 2010/2008 Empty
PostSubject: Re: Membuat informasi sistem di VB 2010/2008   Membuat informasi sistem di VB 2010/2008 Icon_minitime1Fri Nov 25, 2011 9:05 pm

RieqyNS13 wrote:
komponen :
6 Label
1 Timer

1) Susun komponen Label seperti gambar dibawah ini kemudian block semua Label dan ganti Locked pada Properties menjadi True :
[You must be registered and logged in to see this image.]

2) dan kemudian tambahkan Timer1,dan pada Properties Timer1 cari Enabled dan kita ganti dengan True, dan Interval kita ganti menjadi 1000
[You must be registered and logged in to see this image.]

3) Klik 2 kali pada Form1(Windows Form Application1),dan kemudian masukkan code berikut :
Code:
Label1.Text = "Available Physical Memory: " & My.Computer.Info.AvailablePhysicalMemory / 1024 / 1024 & " MB"
        Label2.Text = "Available Virtual Memory: " & My.Computer.Info.AvailableVirtualMemory / 1024 / 1024 & " MB"
        Label3.Text = "Operating System: " & My.Computer.Info.OSFullName & " " & My.Computer.Info.OSVersion
        Label4.Text = "Platform: " & My.Computer.Info.OSPlatform
        Label5.Text = "Physical Memory: " & My.Computer.Info.TotalPhysicalMemory / 1024 / 1024 & " MB"
        Label6.Text = "Virtual memory: " & My.Computer.Info.TotalVirtualMemory / 1024 / 1024 & " MB"

4) Kemudian pada Timer1,kita klik 2 kali dan masukkan code berikut :
Code:
Label1.Text = "Available Physical Memory: " & My.Computer.Info.AvailablePhysicalMemory / 1024 / 1024 & " MB"
        Label2.Text = "Available Virtual Memory: " & My.Computer.Info.AvailableVirtualMemory / 1024 / 1024 & " MB"



MINTA LINK vb 2010 donk !
Back to top Go down
Dewa Ninjasaga
Warga Lama
Warga Lama
Dewa Ninjasaga


Jumlah posting : 233
Join date : 2011-04-08
Age : 29
Lokasi : CIREBON

Membuat informasi sistem di VB 2010/2008 Empty
PostSubject: Re: Membuat informasi sistem di VB 2010/2008   Membuat informasi sistem di VB 2010/2008 Icon_minitime1Fri Nov 25, 2011 9:31 pm

RieqyNS13 wrote:
komponen :
6 Label
1 Timer

1) Susun komponen Label seperti gambar dibawah ini kemudian block semua Label dan ganti Locked pada Properties menjadi True :
[You must be registered and logged in to see this image.]

2) dan kemudian tambahkan Timer1,dan pada Properties Timer1 cari Enabled dan kita ganti dengan True, dan Interval kita ganti menjadi 1000
[You must be registered and logged in to see this image.]

3) Klik 2 kali pada Form1(Windows Form Application1),dan kemudian masukkan code berikut :
Code:
Label1.Text = "Available Physical Memory: " & My.Computer.Info.AvailablePhysicalMemory / 1024 / 1024 & " MB"
        Label2.Text = "Available Virtual Memory: " & My.Computer.Info.AvailableVirtualMemory / 1024 / 1024 & " MB"
        Label3.Text = "Operating System: " & My.Computer.Info.OSFullName & " " & My.Computer.Info.OSVersion
        Label4.Text = "Platform: " & My.Computer.Info.OSPlatform
        Label5.Text = "Physical Memory: " & My.Computer.Info.TotalPhysicalMemory / 1024 / 1024 & " MB"
        Label6.Text = "Virtual memory: " & My.Computer.Info.TotalVirtualMemory / 1024 / 1024 & " MB"

4) Kemudian pada Timer1,kita klik 2 kali dan masukkan code berikut :
Code:
Label1.Text = "Available Physical Memory: " & My.Computer.Info.AvailablePhysicalMemory / 1024 / 1024 & " MB"
        Label2.Text = "Available Virtual Memory: " & My.Computer.Info.AvailableVirtualMemory / 1024 / 1024 & " MB"




d coba dulu gan ...
thanks info.a ... Membuat informasi sistem di VB 2010/2008 205289 Membuat informasi sistem di VB 2010/2008 205289
Back to top Go down
Sponsored content





Membuat informasi sistem di VB 2010/2008 Empty
PostSubject: Re: Membuat informasi sistem di VB 2010/2008   Membuat informasi sistem di VB 2010/2008 Icon_minitime1

Back to top Go down
 
Membuat informasi sistem di VB 2010/2008
Back to top 
Page 1 of 1
 Similar topics
-
» Membuat Stopwatch Di Visual Basic 2008
» Cara membuat web browser sendiri dengan VB 2008/2006
» Cara Membuat Proggres Bar VB 2010 & VB 6
» Cara Membuat MD5 Hasher Dengan VB 2010
» Membuat Anti Virus Visual Basic 2010 Express

Permissions in this forum:You cannot reply to topics in this forum
cmonhackns.n-stars.org :: Computer Freakz :: All About Programming :: Visual Basic-
Jump to: