Click here to Skip to main content
15,885,212 members
Home / Discussions / C#
   

C#

 
AnswerRe: update Dictionary with new KeyValuePair set Pin
Daniel Grunwald27-Mar-10 7:18
Daniel Grunwald27-Mar-10 7:18 
GeneralRe: update Dictionary with new KeyValuePair set Pin
PIEBALDconsult27-Mar-10 17:23
mvePIEBALDconsult27-Mar-10 17:23 
QuestionHow can i know from which interface the method is calling? Pin
Satish - Developer27-Mar-10 2:46
Satish - Developer27-Mar-10 2:46 
AnswerRe: How can i know from which interface the method is calling? Pin
Nuri Ismail27-Mar-10 3:03
Nuri Ismail27-Mar-10 3:03 
AnswerRe: How can i know from which interface the method is calling? Pin
AspDotNetDev27-Mar-10 3:13
protectorAspDotNetDev27-Mar-10 3:13 
QuestionHow to write the design editor? Pin
yu-jian27-Mar-10 1:34
yu-jian27-Mar-10 1:34 
AnswerRe: How to write the design editor? Pin
yu-jian28-Mar-10 3:34
yu-jian28-Mar-10 3:34 
GeneralRe: How to write the design editor? Pin
OriginalGriff28-Mar-10 4:10
mveOriginalGriff28-Mar-10 4:10 
A couple of things:
1) If you paste code fragments, make them as small as possible - no one want to wade through 3 pages of someone else's code for the fun of it.
2) If you paste code fragments, enclose then in <pre>...</pre> blocks with the "Code Block" widget - it preserves the formatting and makes it easier to read. Thus it is more likely that someone will read it. It is the difference between:
{<br />
if (disposing && (components != null))<br />
{<br />
components.Dispose();<br />
}<br />
base.Dispose(disposing);<br />
}

and:
{
if (disposing && (components != null))
   {
   components.Dispose();
   }
base.Dispose(disposing);
}
(That does not mean just put a code block around your existing post, use the "Preview" button to see what I mean.)
3) Ask a specific question, on where you are stuck, not "how can I make it?". That just shows that you have done no research, to tried in any way to help yourself.
4) Have a little patience, particularly when posting on a weekend. Since today is not a business day in Europe, America or Australia, most people are at home enjoying themselves, rather than hanging around here. Tomorrow, more people will be at work, and may see your question.
5) Trying to push an answer out of people just gets their backs up. No-one here gets paid to do this, so if you annoy them, they will not answer, or will become abusive.
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

QuestionA question on SqlCommand.CommandText Pin
Dewald26-Mar-10 23:01
Dewald26-Mar-10 23:01 
AnswerRe: A question on SqlCommand.CommandText [modified] Pin
Dan Mos27-Mar-10 0:24
Dan Mos27-Mar-10 0:24 
AnswerRe: A question on SqlCommand.CommandText Pin
#realJSOP27-Mar-10 1:29
mve#realJSOP27-Mar-10 1:29 
AnswerRe: A question on SqlCommand.CommandText Pin
PIEBALDconsult27-Mar-10 4:28
mvePIEBALDconsult27-Mar-10 4:28 
QuestionCompress a Folder using GZipStream Pin
anishkannan26-Mar-10 21:57
anishkannan26-Mar-10 21:57 
AnswerRe: Compress a Folder using GZipStream Pin
Richard MacCutchan26-Mar-10 23:05
mveRichard MacCutchan26-Mar-10 23:05 
GeneralRe: Compress a Folder using GZipStream Pin
AspDotNetDev26-Mar-10 23:23
protectorAspDotNetDev26-Mar-10 23:23 
GeneralRe: Compress a Folder using GZipStream Pin
Richard MacCutchan26-Mar-10 23:44
mveRichard MacCutchan26-Mar-10 23:44 
GeneralRe: Compress a Folder using GZipStream Pin
AspDotNetDev26-Mar-10 23:53
protectorAspDotNetDev26-Mar-10 23:53 
GeneralRe: Compress a Folder using GZipStream Pin
Richard MacCutchan27-Mar-10 3:19
mveRichard MacCutchan27-Mar-10 3:19 
GeneralRe: Compress a Folder using GZipStream Pin
AspDotNetDev27-Mar-10 3:27
protectorAspDotNetDev27-Mar-10 3:27 
GeneralRe: Compress a Folder using GZipStream Pin
Richard MacCutchan27-Mar-10 3:46
mveRichard MacCutchan27-Mar-10 3:46 
QuestionCompress a Folder Pin
anishkannan26-Mar-10 21:56
anishkannan26-Mar-10 21:56 
AnswerRe: Compress a Folder Pin
R. Giskard Reventlov26-Mar-10 22:00
R. Giskard Reventlov26-Mar-10 22:00 
AnswerRe: Compress a Folder Pin
Nuri Ismail26-Mar-10 22:19
Nuri Ismail26-Mar-10 22:19 
AnswerRe: Compress a Folder Pin
harold aptroot26-Mar-10 22:21
harold aptroot26-Mar-10 22:21 
AnswerRe: Compress a Folder Pin
AspDotNetDev26-Mar-10 23:17
protectorAspDotNetDev26-Mar-10 23:17 

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.