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

Visual Basic

 
AnswerRe: How to connect or print to thermal printer? Pin
Christian Graus22-Aug-06 14:50
protectorChristian Graus22-Aug-06 14:50 
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 
First of all, if you want to be a programmer, learn to use google.

public - this variable/method is visible to anyone
protected - this variable/method is visible to this class, and classes derived from it
private - this variable/method is visible to this class only

private and protected are used for encapsulation, so a class can hide it's internal details and expose only a public interface.

static is completely unrelated. If a method is static, it has no state, you cannot use this, or any member variables in that method. Factory methods are one example of a method that will be static. A variable that is static means it only exists once. If you have 50 instances of foo, and bar is a static int, if you change it in one instance, that value is set for all instances.


Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog

AnswerRe: Meaning and use of variable types Pin
Guffa22-Aug-06 11:37
Guffa22-Aug-06 11:37 
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 

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.