Click here to Skip to main content
15,921,793 members
Home / Discussions / C#
   

C#

 
GeneralRe: invoking process at the romote system Pin
Dave Kreskowiak19-Mar-07 12:56
mveDave Kreskowiak19-Mar-07 12:56 
AnswerRe: invoking process at the romote system Pin
originSH19-Mar-07 4:47
originSH19-Mar-07 4:47 
QuestionCreating my own design time common tasks editor... Pin
Shy Agam19-Mar-07 2:16
Shy Agam19-Mar-07 2:16 
AnswerRe: Creating my own design time common tasks editor... Pin
Thomas Stockwell19-Mar-07 8:23
professionalThomas Stockwell19-Mar-07 8:23 
GeneralRe: Creating my own design time common tasks editor... Pin
Shy Agam19-Mar-07 9:27
Shy Agam19-Mar-07 9:27 
QuestionHow change dateTime format!! Pin
darkcalin19-Mar-07 1:44
darkcalin19-Mar-07 1:44 
AnswerRe: How change dateTime format!! Pin
joon vh.19-Mar-07 1:49
joon vh.19-Mar-07 1:49 
GeneralRe: How change dateTime format!! Pin
darkcalin19-Mar-07 1:57
darkcalin19-Mar-07 1:57 
I must create the xml in one fixed format.

I have create one bull s...t WTF | :WTF:

I have create another table with string fields and with this i can write the exact format but it is not a good ideea. This s...t works but the method is ..... not for the coders.
<code>

DataRow row2 = tr.NewRow();
object[] vct = dataTemp.Rows[0].ItemArray;
for (int k = 0; k < vct.Length;k++ )
{
   MessageBox.Show(vct[k].GetType().ToString());
   if (vct[k].GetType().ToString() == "System.DateTime")
   {
      DateTime dtime = new DateTime();
      dtime = Convert.ToDateTime(vct[k]);
      row2[k] = dtime.ToString("yyyy-MM-dd");
    }
    else
      row2[k] = vct[k].ToString(); </code>

GeneralRe: How change dateTime format!! Pin
joon vh.19-Mar-07 2:08
joon vh.19-Mar-07 2:08 
GeneralRe: How change dateTime format!! Pin
darkcalin19-Mar-07 2:17
darkcalin19-Mar-07 2:17 
GeneralRe: How change dateTime format!! Pin
joon vh.19-Mar-07 2:32
joon vh.19-Mar-07 2:32 
QuestionHow can I build a ListBox array? Pin
memix19-Mar-07 0:31
memix19-Mar-07 0:31 
AnswerRe: How can I build a ListBox array? Pin
Andrei Ungureanu19-Mar-07 0:42
Andrei Ungureanu19-Mar-07 0:42 
AnswerRe: How can I build a ListBox array? Pin
Russell Jones19-Mar-07 0:56
Russell Jones19-Mar-07 0:56 
AnswerRe: How can I build a ListBox array? Pin
Pete O'Hanlon19-Mar-07 1:01
mvePete O'Hanlon19-Mar-07 1:01 
GeneralRe: How can I build a ListBox array? Pin
sujithkumarsl19-Mar-07 1:39
sujithkumarsl19-Mar-07 1:39 
GeneralRe: How can I build a ListBox array? Pin
Pete O'Hanlon19-Mar-07 2:18
mvePete O'Hanlon19-Mar-07 2:18 
AnswerRe: How can I build a ListBox array? Pin
memix19-Mar-07 2:09
memix19-Mar-07 2:09 
GeneralRe: How can I build a ListBox array? Pin
Pete O'Hanlon19-Mar-07 2:20
mvePete O'Hanlon19-Mar-07 2:20 
QuestionTreeView Pin
sinosoidal19-Mar-07 0:21
sinosoidal19-Mar-07 0:21 
AnswerRe: TreeView Pin
JoeSharp19-Mar-07 0:32
JoeSharp19-Mar-07 0:32 
GeneralRe: TreeView Pin
sinosoidal19-Mar-07 0:37
sinosoidal19-Mar-07 0:37 
AnswerRe: TreeView Pin
sinosoidal19-Mar-07 0:49
sinosoidal19-Mar-07 0:49 
GeneralRe: TreeView Pin
joon vh.19-Mar-07 1:15
joon vh.19-Mar-07 1:15 
GeneralRe: TreeView Pin
sinosoidal19-Mar-07 5:12
sinosoidal19-Mar-07 5:12 

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.