Click here to Skip to main content
15,926,703 members
Home / Discussions / C#
   

C#

 
Questionhow to retrieve the version of ms word installed? Pin
khchan5-Oct-04 19:07
khchan5-Oct-04 19:07 
AnswerRe: how to retrieve the version of ms word installed? Pin
Anonymous5-Oct-04 22:12
Anonymous5-Oct-04 22:12 
Generalplot 2d Line Graph Using GDI+ Pin
xiaowenjie5-Oct-04 18:58
xiaowenjie5-Oct-04 18:58 
GeneralRe: plot 2d Line Graph Using GDI+ Pin
Robert Rohde5-Oct-04 19:10
Robert Rohde5-Oct-04 19:10 
GeneralChange the color of a selected date in DataTimePicker Pin
xiaowenjie5-Oct-04 18:01
xiaowenjie5-Oct-04 18:01 
GeneralThreading safety with windows form Pin
mitreviper5-Oct-04 17:23
mitreviper5-Oct-04 17:23 
GeneralRe: Threading safety with windows form Pin
Alex Korchemniy5-Oct-04 17:45
Alex Korchemniy5-Oct-04 17:45 
GeneralRe: Threading safety with windows form Pin
Stefan Troschuetz5-Oct-04 20:58
Stefan Troschuetz5-Oct-04 20:58 
A member is public static when it is declared public static and therefor can be accessed without an instance of the class. An instance member on the other side can only be accessed by using an object of the class. A short example:
public class Test
{
// No instance needed to access this member
public static int StaticMember;
// Need an instance to access this member
public int InstanceMember;
}

Test.StaticMember = 5;
Test obj = new Test;
obj.InstanceMember = 5;








www.troschuetz.de
QuestionCan I pass an arrayList as arguments to MFC dll and return an CArray object from MFC dll to c# as arrayList using P/Invoke? Pin
ting6685-Oct-04 16:17
ting6685-Oct-04 16:17 
GeneralTextBox w/ transparent bg Pin
Anonymous5-Oct-04 14:48
Anonymous5-Oct-04 14:48 
Generalbitmaps Pin
cmarmr5-Oct-04 14:43
cmarmr5-Oct-04 14:43 
QuestionOne Program Controls Another? Pin
BonJoviJones5-Oct-04 12:40
BonJoviJones5-Oct-04 12:40 
AnswerRe: One Program Controls Another? Pin
Alex Korchemniy5-Oct-04 17:54
Alex Korchemniy5-Oct-04 17:54 
GeneralProgress Bar Pin
Lash205-Oct-04 11:56
Lash205-Oct-04 11:56 
GeneralRe: Progress Bar Pin
Alex Korchemniy5-Oct-04 12:53
Alex Korchemniy5-Oct-04 12:53 
GeneralRe: Progress Bar Pin
Dave Kreskowiak5-Oct-04 17:13
mveDave Kreskowiak5-Oct-04 17:13 
GeneralRe: Progress Bar Pin
Lash206-Oct-04 4:02
Lash206-Oct-04 4:02 
GeneralRe: Progress Bar Pin
Dave Kreskowiak6-Oct-04 13:06
mveDave Kreskowiak6-Oct-04 13:06 
General"NO Such interface supported" C# to Excel Pin
Ruchi Gupta5-Oct-04 11:20
Ruchi Gupta5-Oct-04 11:20 
GeneralLog to Access database from C# Pin
hans175-Oct-04 10:15
hans175-Oct-04 10:15 
Generalprinting with c# Pin
Member 12961365-Oct-04 9:01
Member 12961365-Oct-04 9:01 
GeneralRe: printing with c# Pin
Anonymous5-Oct-04 14:28
Anonymous5-Oct-04 14:28 
GeneralRe: printing with c# Pin
Member 12961367-Oct-04 7:06
Member 12961367-Oct-04 7:06 
GeneralUsing ArrayList in C sharp Pin
aussi5-Oct-04 8:59
aussi5-Oct-04 8:59 
GeneralRe: Using ArrayList in C sharp Pin
Christian Graus5-Oct-04 11:48
protectorChristian Graus5-Oct-04 11:48 

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.