Click here to Skip to main content
15,890,370 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionInstallShield 11.5 and Crystal Reports Merge Modules Pin
Steven J Jowett6-Sep-06 4:18
Steven J Jowett6-Sep-06 4:18 
QuestionMaking components Pin
Magno R. Vasquez6-Sep-06 3:19
Magno R. Vasquez6-Sep-06 3:19 
AnswerRe: Making components Pin
Dave Sexton6-Sep-06 4:00
Dave Sexton6-Sep-06 4:00 
QuestionHow Get Cpu Name Pin
FriendlySoluations6-Sep-06 2:04
FriendlySoluations6-Sep-06 2:04 
AnswerRe: How Get Cpu Name Pin
Clanguage6-Sep-06 2:50
Clanguage6-Sep-06 2:50 
GeneralRe: How Get Cpu Name Pin
Colin Angus Mackay6-Sep-06 3:17
Colin Angus Mackay6-Sep-06 3:17 
GeneralRe: How Get Cpu Name Pin
Clanguage6-Sep-06 7:03
Clanguage6-Sep-06 7:03 
AnswerRe: How Get Cpu Name Pin
progload6-Sep-06 10:10
progload6-Sep-06 10:10 
WMI... Alway's slow but.. somthing like this..

Imports System.Management

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim ConfigNamespace As String = "\\.\root\cimv2"
Dim query As String = "select * from Win32_Processor"
Dim searcher As ManagementObjectSearcher = New ManagementObjectSearcher(ConfigNamespace, query)
Dim collection As ManagementObjectCollection = searcher.Get
For Each item As ManagementObject In collection
For Each prop As PropertyData In item.Properties
Try
Console.WriteLine(prop.Name + ":" + prop.Value.ToString)
Catch gExVar As Exception
End Try
Next
Next

End Sub

QuestionRunning Program(on VB .NET) Without SQL Pin
FriendlySoluations6-Sep-06 1:26
FriendlySoluations6-Sep-06 1:26 
AnswerRe: Running Program(on VB .NET) Without SQL Pin
Rizwan Bashir6-Sep-06 3:55
Rizwan Bashir6-Sep-06 3:55 
AnswerRe: Running Program(on VB .NET) Without SQL Pin
Dave Kreskowiak6-Sep-06 7:07
mveDave Kreskowiak6-Sep-06 7:07 
QuestionCompression Pin
nitin_ion6-Sep-06 1:19
nitin_ion6-Sep-06 1:19 
AnswerRe: Compression Pin
Dave Kreskowiak6-Sep-06 7:20
mveDave Kreskowiak6-Sep-06 7:20 
QuestionPlz urgent................ Pin
Exelioindia6-Sep-06 0:58
Exelioindia6-Sep-06 0:58 
AnswerRe: Plz urgent................ Pin
Tamimi - Code6-Sep-06 1:24
Tamimi - Code6-Sep-06 1:24 
GeneralRe: Plz urgent................ Pin
Exelioindia6-Sep-06 18:58
Exelioindia6-Sep-06 18:58 
GeneralRe: Plz urgent................ Pin
Tamimi - Code6-Sep-06 19:29
Tamimi - Code6-Sep-06 19:29 
GeneralRe: Plz urgent................ Pin
Exelioindia7-Sep-06 0:06
Exelioindia7-Sep-06 0:06 
GeneralRe: Plz urgent................ Pin
Alex@UEA8-Sep-06 3:30
Alex@UEA8-Sep-06 3:30 
QuestionCall Web service from eVB Pin
Nitin19816-Sep-06 0:35
Nitin19816-Sep-06 0:35 
Question[Message Deleted] Pin
ii_noname_ii5-Sep-06 23:28
ii_noname_ii5-Sep-06 23:28 
AnswerRe: ..atlas toolkit Pin
ii_noname_ii6-Sep-06 0:50
ii_noname_ii6-Sep-06 0:50 
GeneralRe: ..atlas toolkit Pin
Dave Sexton6-Sep-06 4:15
Dave Sexton6-Sep-06 4:15 
Questionweb browser control on vb.net- how to save the document Pin
Rizwan Bashir5-Sep-06 22:11
Rizwan Bashir5-Sep-06 22:11 
QuestionHow to trap event of user control Pin
Nathan Buckley5-Sep-06 17:51
Nathan Buckley5-Sep-06 17:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.