Click here to Skip to main content
15,922,015 members
Home / Discussions / C#
   

C#

 
Questionproblem in my service. Pin
noamtzu002-Mar-10 1:48
noamtzu002-Mar-10 1:48 
AnswerRe: problem in my service. Pin
Rob Philpott2-Mar-10 2:09
Rob Philpott2-Mar-10 2:09 
QuestionMulti Language in Dont Net Pin
Syed Shahid Hussain2-Mar-10 1:29
Syed Shahid Hussain2-Mar-10 1:29 
AnswerMessage Closed Pin
2-Mar-10 1:34
stancrm2-Mar-10 1:34 
GeneralRe: Multi Language in Dont Net Pin
Syed Shahid Hussain2-Mar-10 1:59
Syed Shahid Hussain2-Mar-10 1:59 
GeneralMessage Closed Pin
2-Mar-10 2:04
stancrm2-Mar-10 2:04 
GeneralRe: Multi Language in Dont Net Pin
Syed Shahid Hussain2-Mar-10 3:14
Syed Shahid Hussain2-Mar-10 3:14 
AnswerRe: Multi Language in Dont Net Pin
kevinnicol2-Mar-10 2:53
kevinnicol2-Mar-10 2:53 
GeneralRe: Multi Language in Dont Net Pin
Syed Shahid Hussain2-Mar-10 3:15
Syed Shahid Hussain2-Mar-10 3:15 
QuestionProject Version Pin
jojoba20112-Mar-10 0:04
jojoba20112-Mar-10 0:04 
AnswerRe: Project Version Pin
Rashmi_Karnam2-Mar-10 1:01
Rashmi_Karnam2-Mar-10 1:01 
AnswerRe: Project Version Pin
carlecomm2-Mar-10 18:04
carlecomm2-Mar-10 18:04 
QuestionPassing strings between windows forms Pin
Phil Saville1-Mar-10 23:26
Phil Saville1-Mar-10 23:26 
AnswerRe: Passing strings between windows forms Pin
OriginalGriff1-Mar-10 23:51
mveOriginalGriff1-Mar-10 23:51 
AnswerRe: Passing strings between windows forms Pin
DaveyM692-Mar-10 1:01
professionalDaveyM692-Mar-10 1:01 
AnswerRe: Passing strings between windows forms Pin
Som Shekhar2-Mar-10 1:03
Som Shekhar2-Mar-10 1:03 
GeneralRe: Passing strings between windows forms Pin
Syed Shahid Hussain2-Mar-10 1:27
Syed Shahid Hussain2-Mar-10 1:27 
GeneralRe: Passing strings between windows forms Pin
OriginalGriff2-Mar-10 1:52
mveOriginalGriff2-Mar-10 1:52 
Bad idea!
Firstly, there are no global variables in C# - for good reason!
Secondly, exposing form internals so that another form or class can access them is bad practice, as it means that the two classes are tied together - you cannot safely change one of them without potentially affecting the other. It is much better to keep internals private, so that nothing outside the class relies on them.
You should never use standby on an elephant. It always crashes when you lift the ears. - Mark Wallace

C/C++ (I dont see a huge difference between them, and the 'benefits' of C++ are questionable, who needs inheritance when you have copy and paste) - fat_boy

GeneralRe: Passing strings between windows forms Pin
Phil Saville2-Mar-10 2:28
Phil Saville2-Mar-10 2:28 
GeneralRe: Passing strings between windows forms Pin
Phil Saville2-Mar-10 2:46
Phil Saville2-Mar-10 2:46 
GeneralRe: Passing strings between windows forms Pin
Rasepretrep22-Mar-10 4:03
Rasepretrep22-Mar-10 4:03 
GeneralRe: Passing strings between windows forms Pin
Phil Saville2-Mar-10 4:18
Phil Saville2-Mar-10 4:18 
GeneralRe: Passing strings between windows forms Pin
OriginalGriff2-Mar-10 4:34
mveOriginalGriff2-Mar-10 4:34 
AnswerRe: Passing strings between windows forms Pin
DX Roster4-Mar-10 18:38
DX Roster4-Mar-10 18:38 
QuestionExporting DataGridView to excel Pin
Hum Dum1-Mar-10 23:18
Hum Dum1-Mar-10 23:18 

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.