Click here to Skip to main content
15,888,979 members
Home / Discussions / C#
   

C#

 
GeneralRe: Hi all Pin
JoeManche9-Feb-12 18:48
JoeManche9-Feb-12 18:48 
GeneralRe: Hi all Pin
BillWoodruff9-Feb-12 20:24
professionalBillWoodruff9-Feb-12 20:24 
Questionexecutable file Pin
AndyInUK9-Feb-12 3:14
AndyInUK9-Feb-12 3:14 
AnswerRe: executable file Pin
BobJanova9-Feb-12 3:53
BobJanova9-Feb-12 3:53 
AnswerMessage Removed Pin
9-Feb-12 5:29
professionalN_tro_P9-Feb-12 5:29 
GeneralRe: executable file Pin
raven198529-Feb-12 13:11
raven198529-Feb-12 13:11 
GeneralRe: executable file Pin
BobJanova9-Feb-12 22:04
BobJanova9-Feb-12 22:04 
Questionhow to reverse string on column - datagridview Pin
goldsoft9-Feb-12 2:22
goldsoft9-Feb-12 2:22 
hi
i have this code:

C#
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
 {
  if (e.Value != null)
  {
   string l_value = e.Value.ToString();
   char[] l_array = l_value.ToCharArray();
   Array.Reverse(l_array);
   e.Value = new string(l_array);
  }
 }


it reverse all of the datagridview
i need only column 2 that be reverse

how to change this code ?
thanks in advance
AnswerRe: how to reverse string on column - datagridview Pin
_AnsHUMAN_ 9-Feb-12 2:32
_AnsHUMAN_ 9-Feb-12 2:32 
QuestionDisplaying a 32bit bitmap with Alpha channel transparency Pin
__John_9-Feb-12 2:14
__John_9-Feb-12 2:14 
AnswerRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
Pete O'Hanlon9-Feb-12 2:59
mvePete O'Hanlon9-Feb-12 2:59 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
__John_9-Feb-12 4:07
__John_9-Feb-12 4:07 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
Pete O'Hanlon9-Feb-12 4:24
mvePete O'Hanlon9-Feb-12 4:24 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
__John_9-Feb-12 4:46
__John_9-Feb-12 4:46 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
harold aptroot9-Feb-12 4:26
harold aptroot9-Feb-12 4:26 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
__John_9-Feb-12 4:53
__John_9-Feb-12 4:53 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
harold aptroot9-Feb-12 5:08
harold aptroot9-Feb-12 5:08 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
BillWoodruff9-Feb-12 20:28
professionalBillWoodruff9-Feb-12 20:28 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
SledgeHammer019-Feb-12 5:13
SledgeHammer019-Feb-12 5:13 
GeneralRe: Displaying a 32bit bitmap with Alpha channel transparency Pin
Pete O'Hanlon9-Feb-12 5:22
mvePete O'Hanlon9-Feb-12 5:22 
QuestionHow to get value from Reorder List Ajax control? Pin
Manish_Kumar_Nayak9-Feb-12 2:10
Manish_Kumar_Nayak9-Feb-12 2:10 
AnswerHow to get value from Reorder List Ajax control? Pin
Manish_Kumar_Nayak9-Feb-12 18:40
Manish_Kumar_Nayak9-Feb-12 18:40 
QuestionStart any Application(Say Skype) on remote machine using c# language . Pin
Ashish payghan8-Feb-12 22:34
Ashish payghan8-Feb-12 22:34 
AnswerRe: Start any Application(Say Skype) on remote machine using c# language . Pin
Pete O'Hanlon8-Feb-12 23:29
mvePete O'Hanlon8-Feb-12 23:29 
AnswerRe: Start any Application(Say Skype) on remote machine using c# language . Pin
Dave Kreskowiak9-Feb-12 2:07
mveDave Kreskowiak9-Feb-12 2:07 

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.