Click here to Skip to main content
15,915,093 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionUsing WMI in VB.NET 2005 Pin
andyr200522-Aug-06 12:59
andyr200522-Aug-06 12:59 
AnswerRe: Using WMI in VB.NET 2005 Pin
Steven J Jowett23-Aug-06 0:03
Steven J Jowett23-Aug-06 0:03 
Questionlistview search [modified] Pin
faraichikumbu22-Aug-06 12:40
faraichikumbu22-Aug-06 12:40 
AnswerRe: listview search Pin
Christian Graus22-Aug-06 13:11
protectorChristian Graus22-Aug-06 13:11 
QuestionIcon Question Pin
Kschuler22-Aug-06 11:19
Kschuler22-Aug-06 11:19 
QuestionMeaning and use of variable types Pin
keroed_edmond22-Aug-06 11:17
keroed_edmond22-Aug-06 11:17 
AnswerRe: Meaning and use of variable types Pin
Christian Graus22-Aug-06 11:32
protectorChristian Graus22-Aug-06 11:32 
AnswerRe: Meaning and use of variable types Pin
Guffa22-Aug-06 11:37
Guffa22-Aug-06 11:37 
A static variable is created in the class. That means that it's available even if you don't have any instances of the class. Also if you have ten instances of the class, there is still only one of the static variable.

Variables that are non-static are created in the instance of the class. If you create ten instances, each will have their own set of variables.

Private variables are only reachable from within the same class, while public variables are also reachable from outside the class.

OOP purists never use public variables. Instead they (we) declare them as private, and create a public property to access each variable.


---
b { font-weight: normal; }

QuestionSystem Administration for Windows Pin
Mostafa Siraj22-Aug-06 11:11
Mostafa Siraj22-Aug-06 11:11 
AnswerRe: System Administration for Windows Pin
Dave Kreskowiak23-Aug-06 6:43
mveDave Kreskowiak23-Aug-06 6:43 
GeneralRe: System Administration for Windows Pin
Mostafa Siraj23-Aug-06 8:06
Mostafa Siraj23-Aug-06 8:06 
GeneralRe: System Administration for Windows Pin
Dave Kreskowiak23-Aug-06 10:01
mveDave Kreskowiak23-Aug-06 10:01 
Questionaccess not installed Pin
dbellman22-Aug-06 10:55
dbellman22-Aug-06 10:55 
AnswerRe: access not installed Pin
quacks_a_lot22-Aug-06 10:57
quacks_a_lot22-Aug-06 10:57 
AnswerRe: access not installed Pin
Kschuler22-Aug-06 11:24
Kschuler22-Aug-06 11:24 
AnswerRe: access not installed Pin
Charles Wolfe6-Sep-06 2:39
Charles Wolfe6-Sep-06 2:39 
Questionexplorer drop handler! (fast answer please) Pin
dotnetmate22-Aug-06 10:28
dotnetmate22-Aug-06 10:28 
QuestionBest way to show an editable one to many relationship Pin
Chris Turnbough22-Aug-06 10:01
Chris Turnbough22-Aug-06 10:01 
Questiondatagrid Pin
md_refay22-Aug-06 9:53
md_refay22-Aug-06 9:53 
Questionparse string with VBScript Pin
kani9822-Aug-06 6:59
kani9822-Aug-06 6:59 
AnswerRe: parse string with VBScript Pin
quacks_a_lot22-Aug-06 10:51
quacks_a_lot22-Aug-06 10:51 
AnswerRe: parse string with VBScript Pin
Dave Kreskowiak23-Aug-06 6:40
mveDave Kreskowiak23-Aug-06 6:40 
QuestionDynamic CheckBoxList Creation Pin
GaryT8022-Aug-06 6:12
GaryT8022-Aug-06 6:12 
AnswerRe: Dynamic CheckBoxList Creation Pin
quacks_a_lot22-Aug-06 10:55
quacks_a_lot22-Aug-06 10:55 
AnswerRe: Dynamic CheckBoxList Creation Pin
GaryT8022-Aug-06 11:58
GaryT8022-Aug-06 11:58 

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.