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

C#

 
Questiongetting more curve points after drawing GDI curve? Pin
mxb12114-Sep-05 8:37
mxb12114-Sep-05 8:37 
Questionsplit into an array when delimetr is string Pin
tekken2214-Sep-05 8:28
tekken2214-Sep-05 8:28 
AnswerRe: split into an array when delimetr is string Pin
doubledottie14-Sep-05 11:12
doubledottie14-Sep-05 11:12 
AnswerRe: split into an array when delimetr is string Pin
Christian Graus14-Sep-05 11:32
protectorChristian Graus14-Sep-05 11:32 
QuestionUsing a calender not listed in culture Pin
Leyu14-Sep-05 8:00
Leyu14-Sep-05 8:00 
AnswerRe: Using a calender not listed in culture Pin
Leyu14-Sep-05 18:56
Leyu14-Sep-05 18:56 
QuestionDate Issue Pin
bhushanvinay114-Sep-05 7:52
bhushanvinay114-Sep-05 7:52 
AnswerRe: Date Issue Pin
Guffa14-Sep-05 9:46
Guffa14-Sep-05 9:46 
From MSDN:

The following sample demonstrates the ParseExact method.

string strMyDateTime = "2/16/1992 12:15:12";<br />
<br />
// myDateTime gets Feburary 16, 1992, 12 hours, 15 min and 12 sec.<br />
System.DateTime myDateTime =<br />
    System.DateTime.Parse(strMyDateTime);<br />
<br />
System.IFormatProvider format =<br />
    new System.Globalization.CultureInfo("fr-FR", true);<br />
<br />
// Reverse month and day to conform to a different format.<br />
string strMyDateTimeFrench = "    16/02/1992 12:15:12";<br />
<br />
// myDateTimeFrench gets Feburary 16, 1992, 12 hours,<br />
// 15 min and 12 sec.<br />
System.DateTime myDateTimeFrench =<br />
    System.DateTime.Parse(strMyDateTimeFrench,<br />
                          format,<br />
                          System.Globalization.<br />
                            DateTimeStyles.NoCurrentDateDefault);<br />
    <br />
string[] expectedFormats = {"G", "g", "f" ,"F"};<br />
// myDateTimeFrench gets Feburary 16, 1992, 12 hours,<br />
// 15 min and 12 sec.<br />
myDateTimeFrench = <br />
    System.DateTime.ParseExact(strMyDateTimeFrench,<br />
                               expectedFormats,<br />
                               format,<br />
                               System.Globalization.<br />
                                DateTimeStyles.AllowWhiteSpaces);<br />


---
b { font-weight: normal; }

GeneralRe: Date Issue Pin
bhushanvinay14-Sep-05 10:01
bhushanvinay14-Sep-05 10:01 
GeneralRe: Date Issue Pin
Guffa15-Sep-05 2:04
Guffa15-Sep-05 2:04 
QuestionChange Colour of Rows in DataGrid Pin
zaboboa14-Sep-05 6:33
zaboboa14-Sep-05 6:33 
Questionhow do i deploy an application that uses crystal reports? Pin
AfzalHassen14-Sep-05 4:30
AfzalHassen14-Sep-05 4:30 
AnswerRe: how do i deploy an application that uses crystal reports? Pin
Mark0614-Sep-05 11:40
Mark0614-Sep-05 11:40 
QuestionUserControl not marked as serializable Pin
edvler14-Sep-05 3:11
edvler14-Sep-05 3:11 
QuestionHow to collapse an array? Pin
Yannielsen14-Sep-05 3:09
Yannielsen14-Sep-05 3:09 
AnswerRe: How to collapse an array? Pin
Dan Neely14-Sep-05 4:08
Dan Neely14-Sep-05 4:08 
AnswerRe: How to collapse an array? Pin
esjq14-Sep-05 4:30
esjq14-Sep-05 4:30 
QuestionXML serialization Pin
Yoyosch14-Sep-05 2:46
Yoyosch14-Sep-05 2:46 
Questionhow to handle locations of innet control of a user control Pin
arusmemon14-Sep-05 2:37
arusmemon14-Sep-05 2:37 
Questioncreating control array in runtime Pin
liqnit14-Sep-05 2:33
liqnit14-Sep-05 2:33 
AnswerRe: creating control array in runtime Pin
Dave Kreskowiak14-Sep-05 4:51
mveDave Kreskowiak14-Sep-05 4:51 
GeneralRe: creating control array in runtime Pin
liqnit17-Sep-05 19:44
liqnit17-Sep-05 19:44 
Questionhow to find type of Dll Pin
Anonymous14-Sep-05 2:02
Anonymous14-Sep-05 2:02 
AnswerRe: how to find type of Dll Pin
miah alom14-Sep-05 4:19
miah alom14-Sep-05 4:19 
QuestionCan you change the protected statusof a file? Pin
Anonymous14-Sep-05 1:46
Anonymous14-Sep-05 1:46 

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.