Click here to Skip to main content
15,913,587 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: textboxes and.txt files Pin
offroaderdan1-Nov-09 6:11
offroaderdan1-Nov-09 6:11 
GeneralRe: textboxes and.txt files Pin
Dave Kreskowiak1-Nov-09 8:36
mveDave Kreskowiak1-Nov-09 8:36 
QuestionHow to dock the Ms-Word Document file Inside the Panel? [Office Automation] Pin
Paramu19731-Nov-09 3:25
Paramu19731-Nov-09 3:25 
AnswerRe: How to dock the Ms-Word Document file Inside the Panel? [Office Automation] Pin
DaveAuld1-Nov-09 3:57
professionalDaveAuld1-Nov-09 3:57 
GeneralRe: How to dock the Ms-Word Document file Inside the Panel? [Office Automation] Pin
Paramu19731-Nov-09 4:31
Paramu19731-Nov-09 4:31 
GeneralRe: How to dock the Ms-Word Document file Inside the Panel? [Office Automation] Pin
DaveAuld1-Nov-09 6:16
professionalDaveAuld1-Nov-09 6:16 
QuestionCommand prompt in vb.net need a tad bit more help Pin
offroaderdan1-Nov-09 2:29
offroaderdan1-Nov-09 2:29 
AnswerRe: Command prompt in vb.net need a tad bit more help Pin
Luc Pattyn1-Nov-09 2:52
sitebuilderLuc Pattyn1-Nov-09 2:52 
offroaderdan wrote:
Select Case SerialNumber FROM Win32_BIOS


Oh no. It takes a bit more code. I only have a C# example showing all non-null entries in Win32_BIOS:
ManagementObjectSearcher searcher=
    new ManagementObjectSearcher("SELECT * FROM Win32_BIOS");
ManagementObjectCollection results=searcher.Get();
foreach (ManagementObject result in results) {
    PropertyDataCollection pdc=result.Properties;
    foreach (PropertyData pd in pdc) {
        string name=pd.Name;
        object obj=pd.Value;
        if (obj!=null) output(name+" = \""+obj.ToString()+"\"");
    }
}


Smile | :)

Luc Pattyn

I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages


GeneralRe: Command prompt in vb.net need a tad bit more help Pin
offroaderdan1-Nov-09 3:38
offroaderdan1-Nov-09 3:38 
GeneralRe: Command prompt in vb.net need a tad bit more help Pin
Luc Pattyn1-Nov-09 3:42
sitebuilderLuc Pattyn1-Nov-09 3:42 
GeneralRe: Command prompt in vb.net need a tad bit more help Pin
offroaderdan1-Nov-09 3:58
offroaderdan1-Nov-09 3:58 
GeneralRe: Command prompt in vb.net need a tad bit more help Pin
Luc Pattyn1-Nov-09 4:02
sitebuilderLuc Pattyn1-Nov-09 4:02 
GeneralRe: Command prompt in vb.net need a tad bit more help Pin
offroaderdan1-Nov-09 4:09
offroaderdan1-Nov-09 4:09 
GeneralRe: Command prompt in vb.net need a tad bit more help Pin
Dave Kreskowiak1-Nov-09 8:33
mveDave Kreskowiak1-Nov-09 8:33 
GeneralRe: Command prompt in vb.net need a tad bit more help Pin
0x3c01-Nov-09 4:23
0x3c01-Nov-09 4:23 
GeneralRe: Command prompt in vb.net need a tad bit more help Pin
offroaderdan1-Nov-09 4:25
offroaderdan1-Nov-09 4:25 
QuestionDatagridview combined filter Pin
LuxCoder31-Oct-09 12:07
LuxCoder31-Oct-09 12:07 
QuestionUnbound Checkbox column in DataGridView Pin
LuxCoder31-Oct-09 11:55
LuxCoder31-Oct-09 11:55 
AnswerRe: Unbound Checkbox column in DataGridView Pin
Henry Minute31-Oct-09 12:17
Henry Minute31-Oct-09 12:17 
QuestionInserting values into DB Pin
LuxCoder31-Oct-09 11:44
LuxCoder31-Oct-09 11:44 
AnswerRe: Inserting values into DB Pin
Henry Minute31-Oct-09 12:05
Henry Minute31-Oct-09 12:05 
AnswerRe: Inserting values into DB Pin
Luc Pattyn31-Oct-09 12:06
sitebuilderLuc Pattyn31-Oct-09 12:06 
GeneralRe: Inserting values into DB Pin
LuxCoder31-Oct-09 12:11
LuxCoder31-Oct-09 12:11 
AnswerRe: Inserting values into DB Pin
Christian Graus31-Oct-09 12:08
protectorChristian Graus31-Oct-09 12:08 
GeneralRe: Inserting values into DB Pin
LuxCoder31-Oct-09 12:13
LuxCoder31-Oct-09 12:13 

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.