Click here to Skip to main content
15,918,258 members
Home / Discussions / C#
   

C#

 
AnswerRe: List of Drivers in computer Pin
pbraun20-Mar-07 14:11
pbraun20-Mar-07 14:11 
AnswerRe: List of Drivers in computer Pin
Dave Kreskowiak20-Mar-07 16:50
mveDave Kreskowiak20-Mar-07 16:50 
GeneralRe: List of Drivers in computer Pin
Saikek20-Mar-07 20:49
Saikek20-Mar-07 20:49 
GeneralRe: List of Drivers in computer Pin
joon vh.20-Mar-07 23:22
joon vh.20-Mar-07 23:22 
GeneralRe: List of Drivers in computer Pin
Dave Kreskowiak21-Mar-07 1:37
mveDave Kreskowiak21-Mar-07 1:37 
GeneralRe: List of Drivers in computer Pin
Luc Pattyn21-Mar-07 14:35
sitebuilderLuc Pattyn21-Mar-07 14:35 
GeneralRe: List of Drivers in computer Pin
Saikek21-Mar-07 22:11
Saikek21-Mar-07 22:11 
QuestionDictionary Pin
Saikek20-Mar-07 12:49
Saikek20-Mar-07 12:49 
AnswerRe: Dictionary Pin
joon vh.20-Mar-07 23:24
joon vh.20-Mar-07 23:24 
GeneralRe: Dictionary Pin
Saikek21-Mar-07 6:17
Saikek21-Mar-07 6:17 
QuestionShowing a "Image" in a Datagrid Pin
Nooie20-Mar-07 12:48
Nooie20-Mar-07 12:48 
AnswerRe: Showing a "Image" in a Datagrid Pin
Keshav V. Kamat21-Mar-07 1:14
Keshav V. Kamat21-Mar-07 1:14 
GeneralRe: Showing a "Image" in a Datagrid Pin
Nooie21-Mar-07 11:20
Nooie21-Mar-07 11:20 
Questionhow to add " to a string Pin
uowzd0120-Mar-07 12:10
uowzd0120-Mar-07 12:10 
AnswerRe: how to add " to a string Pin
Edmundisme20-Mar-07 12:17
Edmundisme20-Mar-07 12:17 
GeneralRe: how to add " to a string Pin
uowzd0120-Mar-07 12:19
uowzd0120-Mar-07 12:19 
GeneralFor a further explanation Pin
Ennis Ray Lynch, Jr.20-Mar-07 12:19
Ennis Ray Lynch, Jr.20-Mar-07 12:19 
QuestionTransfering values (Global variable) Pin
Muammar©20-Mar-07 11:21
Muammar©20-Mar-07 11:21 
AnswerRe: Transfering values (Global variable) Pin
Wayne Phipps20-Mar-07 11:37
Wayne Phipps20-Mar-07 11:37 
If you decalre a member as public static, you don't need an instance to access it.

As an example, if you declared a string in class like this:
public sealed class MyGlobal
{
    public static string MyString = null;
}


You could access it from anywhare in your project like this:
MyGlobal.MyString = "hello";
MessageBox.Show( MainForm.MyString );


Hope this helps.

Regards

Wayne Phipps
____________

Time is the greatest teacher... unfortunately, it kills all of its students
View my Blog

GeneralRe: Transfering values (Global variable) Pin
Muammar©20-Mar-07 22:06
Muammar©20-Mar-07 22:06 
AnswerRe: Transfering values (Global variable) [modified] Pin
Edmundisme20-Mar-07 12:32
Edmundisme20-Mar-07 12:32 
GeneralRe: Transfering values (Global variable) Pin
Muammar©20-Mar-07 22:07
Muammar©20-Mar-07 22:07 
QuestionTcpChannel Remoting - Proxy Possible? Pin
Kir Birger20-Mar-07 10:07
Kir Birger20-Mar-07 10:07 
AnswerRe: TcpChannel Remoting - Proxy Possible? Pin
b0ksah20-Mar-07 11:14
b0ksah20-Mar-07 11:14 
GeneralRe: TcpChannel Remoting - Proxy Possible? Pin
Kir Birger21-Mar-07 1:59
Kir Birger21-Mar-07 1:59 

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.