Click here to Skip to main content
16,005,316 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionSound Pin
freefika12-Oct-06 5:10
freefika12-Oct-06 5:10 
AnswerRe: Sound Pin
UltraCoder12-Oct-06 7:54
UltraCoder12-Oct-06 7:54 
QuestionEmpty data in Image in Crystal Reports creates border Pin
bschandru12-Oct-06 3:31
bschandru12-Oct-06 3:31 
QuestionDrawing Curve,Polygon ... on mouse movements Pin
vijayalaya12-Oct-06 2:16
vijayalaya12-Oct-06 2:16 
AnswerRe: Drawing Curve,Polygon ... on mouse movements Pin
Christian Graus12-Oct-06 3:28
protectorChristian Graus12-Oct-06 3:28 
QuestionDisplay a database's field names Pin
directred12-Oct-06 1:39
directred12-Oct-06 1:39 
Questionget the architecture of the processor being used Pin
ravi khadka12-Oct-06 0:25
ravi khadka12-Oct-06 0:25 
AnswerRe: get the architecture of the processor being used Pin
Dave Kreskowiak12-Oct-06 3:23
mveDave Kreskowiak12-Oct-06 3:23 
The Family property of Win32_Process is not 100% trustable. It can, at times, return a number that means a processor family very different from what the Name property is telling you.

The Architecture property will always return 0, which means "x86".

Private Sub GetJobList()
    Dim query As New ObjectQuery("SELECT * FROM Win32_Processor")
    Dim searcher As New ManagementObjectSearcher(query)
    Dim objectCollection As ManagementObjectCollection = searcher.Get()
    For Each obj As ManagementObject In objectCollection
        Debug.WriteLine(CStr(obj("Manufacturer"), CStr(obj("Name"))
    Next
    objectCollection.Dispose()
    searcher.Dispose()
End Sub


Dave Kreskowiak
Microsoft MVP - Visual Basic


Questionstartup form Pin
Xmen Real 12-Oct-06 0:01
professional Xmen Real 12-Oct-06 0:01 
AnswerRe: startup form Pin
Dave Kreskowiak12-Oct-06 3:10
mveDave Kreskowiak12-Oct-06 3:10 
GeneralRe: startup form Pin
Xmen Real 12-Oct-06 4:10
professional Xmen Real 12-Oct-06 4:10 
AnswerRe: startup form Pin
Steve :)12-Oct-06 15:57
Steve :)12-Oct-06 15:57 
GeneralRe: startup form Pin
Xmen Real 12-Oct-06 20:57
professional Xmen Real 12-Oct-06 20:57 
AnswerRe: startup form Pin
shriveni13-Oct-06 0:02
shriveni13-Oct-06 0:02 
GeneralRe: startup form Pin
Xmen Real 13-Oct-06 4:03
professional Xmen Real 13-Oct-06 4:03 
Questionreloading a datagrid from a dataset. [modified] Pin
steve_rm11-Oct-06 22:06
steve_rm11-Oct-06 22:06 
QuestionExport Data to Excel Sheet(Please..urgent) Pin
ravimorampudi11-Oct-06 20:28
ravimorampudi11-Oct-06 20:28 
Questionlogin form concept Pin
deepakkp11-Oct-06 19:42
deepakkp11-Oct-06 19:42 
AnswerRe: login form concept Pin
Dave Sexton11-Oct-06 21:18
Dave Sexton11-Oct-06 21:18 
QuestionQuestion about CSV file [modified] Pin
TeiUKei11-Oct-06 18:22
TeiUKei11-Oct-06 18:22 
AnswerRe: Question about CSV file Pin
Dave Sexton11-Oct-06 21:01
Dave Sexton11-Oct-06 21:01 
GeneralRe: Question about CSV file Pin
TeiUKei11-Oct-06 21:51
TeiUKei11-Oct-06 21:51 
GeneralRe: Question about CSV file Pin
Dave Kreskowiak12-Oct-06 3:07
mveDave Kreskowiak12-Oct-06 3:07 
GeneralRe: Question about CSV file Pin
TeiUKei12-Oct-06 14:17
TeiUKei12-Oct-06 14:17 
GeneralRe: Question about CSV file Pin
Dave Kreskowiak12-Oct-06 16:04
mveDave Kreskowiak12-Oct-06 16:04 

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.