Click here to Skip to main content
15,905,028 members
Home / Discussions / C#
   

C#

 
GeneralRe: datetimepicker format for entire application!! Pin
ProtoBytes28-Dec-09 12:22
ProtoBytes28-Dec-09 12:22 
GeneralRe: datetimepicker format for entire application!! Pin
Hussam Fattahi28-Dec-09 22:23
Hussam Fattahi28-Dec-09 22:23 
GeneralRe: datetimepicker format for entire application!! [Extension Method] Pin
ProtoBytes29-Dec-09 3:14
ProtoBytes29-Dec-09 3:14 
GeneralRe: datetimepicker format for entire application!! [Extension Method] Pin
elizas7-Jun-10 1:24
elizas7-Jun-10 1:24 
Questionprinting capability Pin
Ryan Minor26-Dec-09 19:55
Ryan Minor26-Dec-09 19:55 
AnswerRe: printing capability Pin
dan!sh 26-Dec-09 20:12
professional dan!sh 26-Dec-09 20:12 
GeneralRe: printing capability Pin
Ben Fair28-Dec-09 10:24
Ben Fair28-Dec-09 10:24 
AnswerRe: printing capability Pin
MumbleB26-Dec-09 20:47
MumbleB26-Dec-09 20:47 
AnswerRe: printing capability Pin
Ravi Bhavnani27-Dec-09 20:52
professionalRavi Bhavnani27-Dec-09 20:52 
QuestionDate Time Format Pin
Abdullah Al-Muzahid26-Dec-09 17:26
professionalAbdullah Al-Muzahid26-Dec-09 17:26 
AnswerRe: Date Time Format Pin
dan!sh 26-Dec-09 18:06
professional dan!sh 26-Dec-09 18:06 
GeneralRe: Date Time Format Pin
Abdullah Al-Muzahid26-Dec-09 21:51
professionalAbdullah Al-Muzahid26-Dec-09 21:51 
GeneralRe: Date Time Format Pin
dan!sh 26-Dec-09 22:56
professional dan!sh 26-Dec-09 22:56 
GeneralRe: Date Time Format Pin
Abdullah Al-Muzahid26-Dec-09 23:50
professionalAbdullah Al-Muzahid26-Dec-09 23:50 
GeneralRe: Date Time Format Pin
dan!sh 27-Dec-09 0:21
professional dan!sh 27-Dec-09 0:21 
Question[Message Deleted] Pin
ikurtz26-Dec-09 10:13
ikurtz26-Dec-09 10:13 
Questionuse a Datagridviwcomboboxcell in a binded datagridview Pin
baranils26-Dec-09 8:04
baranils26-Dec-09 8:04 
AnswerRe: use a Datagridviwcomboboxcell in a binded datagridview Pin
dan!sh 26-Dec-09 18:08
professional dan!sh 26-Dec-09 18:08 
GeneralRe: use a Datagridviwcomboboxcell in a binded datagridview Pin
baranils26-Dec-09 22:23
baranils26-Dec-09 22:23 
GeneralRe: use a Datagridviwcomboboxcell in a binded datagridview Pin
dan!sh 26-Dec-09 23:07
professional dan!sh 26-Dec-09 23:07 
GeneralRe: use a Datagridviwcomboboxcell in a binded datagridview Pin
baranils27-Dec-09 2:42
baranils27-Dec-09 2:42 
GeneralRe: use a Datagridviwcomboboxcell in a binded datagridview Pin
baranils27-Dec-09 10:13
baranils27-Dec-09 10:13 
QuestionA simple question regarding String Pin
uusheikh26-Dec-09 5:40
uusheikh26-Dec-09 5:40 
AnswerRe: A simple question regarding String Pin
Eddy Vluggen26-Dec-09 6:00
professionalEddy Vluggen26-Dec-09 6:00 
GeneralRe: A simple question regarding String Pin
Ben Fair28-Dec-09 2:52
Ben Fair28-Dec-09 2:52 
Yes, Microsoft purposely made the String type act like a value type, even though it is really a reference type; it is immutable. Any operations on a String produce a copy, or a partial copy, of the String; the underlying string data cannot be directly changed. This is why you have to do a = a.ToUpper(); in the first place, rather than the ToUpper() method directly changing the String. This is also the reason that the StringBuilder class exists, because it allows string manipulation without the extra copying, and thus has better performance in situations where lots of string manipulation will be happening.

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.