Click here to Skip to main content
16,005,222 members
Home / Discussions / C#
   

C#

 
GeneralRe: Alright Pin
Ennis Ray Lynch, Jr.25-Jul-06 11:13
Ennis Ray Lynch, Jr.25-Jul-06 11:13 
QuestionHow to find hyperlinks in .doc files Pin
bojanm725-Jul-06 10:44
bojanm725-Jul-06 10:44 
Questionhow to make a copy of .resx file Pin
iramg25-Jul-06 9:19
iramg25-Jul-06 9:19 
AnswerHold on I am about to move your cheese Pin
Ennis Ray Lynch, Jr.25-Jul-06 10:22
Ennis Ray Lynch, Jr.25-Jul-06 10:22 
QuestionEnterprise logging library by Microsoft. Pin
Charith Jayasundara25-Jul-06 8:27
Charith Jayasundara25-Jul-06 8:27 
AnswerRe: Enterprise logging library by Microsoft. Pin
led mike25-Jul-06 9:33
led mike25-Jul-06 9:33 
QuestionHow to create a "reference" to an object? Pin
Kuang Cao25-Jul-06 8:20
Kuang Cao25-Jul-06 8:20 
AnswerRe: How to create a "reference" to an object? Pin
Guffa25-Jul-06 8:36
Guffa25-Jul-06 8:36 
When you are using objects, you are actually using references to the objects. The four method parameters are references. To get another three references, you just have to declare them in the method:

// Declare the references
classA use1, use2, use3;

// Then set the references
if (some condition) {
   use1 = obj1;
   use2 = obj2;
   use3 = obj3;
} else {
   use1 = obj2;
   use2 = obj3;
   use3 = obj4;
}

GeneralRe: How to create a "reference" to an object? Pin
Kuang Cao25-Jul-06 8:39
Kuang Cao25-Jul-06 8:39 
QuestionNeed unique text in textboxes Pin
kornstyle25-Jul-06 8:19
kornstyle25-Jul-06 8:19 
AnswerRe: Need unique text in textboxes Pin
stancrm25-Jul-06 8:37
stancrm25-Jul-06 8:37 
GeneralRe: Need unique text in textboxes Pin
kornstyle25-Jul-06 8:42
kornstyle25-Jul-06 8:42 
GeneralRe: Need unique text in textboxes [modified] Pin
eggsovereasy25-Jul-06 9:36
eggsovereasy25-Jul-06 9:36 
AnswerRe: Need unique text in textboxes Pin
Ilia Blank25-Jul-06 10:27
Ilia Blank25-Jul-06 10:27 
QuestionA Network Browser.... Please Help. Pin
RobStroud25-Jul-06 8:13
RobStroud25-Jul-06 8:13 
AnswerRe: A Network Browser.... Please Help. Pin
LongRange.Shooter25-Jul-06 10:32
LongRange.Shooter25-Jul-06 10:32 
GeneralRe: A Network Browser.... Please Help. Pin
RobStroud26-Jul-06 8:11
RobStroud26-Jul-06 8:11 
GeneralRe: A Network Browser.... Please Help. Pin
LongRange.Shooter26-Jul-06 9:44
LongRange.Shooter26-Jul-06 9:44 
QuestionException type data getting lost when thrown out of a static class Pin
Dan Neely25-Jul-06 7:54
Dan Neely25-Jul-06 7:54 
AnswerRe: Exception type data getting lost when thrown out of a static class Pin
LongRange.Shooter25-Jul-06 10:36
LongRange.Shooter25-Jul-06 10:36 
GeneralRe: Exception type data getting lost when thrown out of a static class Pin
Dan Neely25-Jul-06 11:03
Dan Neely25-Jul-06 11:03 
GeneralRe: Exception type data getting lost when thrown out of a static class Pin
LongRange.Shooter26-Jul-06 9:47
LongRange.Shooter26-Jul-06 9:47 
Question2 entry points Pin
skyeddie25-Jul-06 7:48
skyeddie25-Jul-06 7:48 
AnswerRe: 2 entry points Pin
stancrm25-Jul-06 8:40
stancrm25-Jul-06 8:40 
QuestionA DataGrid invisible column. Pin
orentuil25-Jul-06 7:48
orentuil25-Jul-06 7: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.