سؤال

I want to make a button and display the System Information from Windows.How can I do it?How can i call that info?Thank you very much.

Is it possible to make something like this?

http://s18.postimage.org/7zn5adst3/Memory.jpg

هل كانت مفيدة؟

المحلول

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Shell("msinfo32.exe", AppWinStyle.NormalFocus)
End Sub

نصائح أخرى

Shell has now been updated and is no longer used. So, the process would be process.start("msinfo32.exe", AppWinStyle.NormalFocus)

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top