Click here to Skip to main content
15,891,951 members
Home / Discussions / C#
   

C#

 
QuestionRe: How to prevent specified files from being deleted + C# Pin
jojoba201122-May-12 17:11
jojoba201122-May-12 17:11 
AnswerRe: How to prevent specified files from being deleted + C# Pin
Eddy Vluggen23-May-12 0:12
professionalEddy Vluggen23-May-12 0:12 
AnswerRe: How to prevent specified files from being deleted + C# Pin
Mycroft Holmes21-May-12 12:30
professionalMycroft Holmes21-May-12 12:30 
AnswerRe: How to prevent specified files from being deleted + C# Pin
Pete O'Hanlon22-May-12 1:50
mvePete O'Hanlon22-May-12 1:50 
QuestionRe: How to prevent specified files from being deleted + C# Pin
jojoba201122-May-12 3:19
jojoba201122-May-12 3:19 
QuestionApply gradient in control DataGridView(c#) Pin
Emanuel vargas20-May-12 10:54
Emanuel vargas20-May-12 10:54 
AnswerRe: Apply gradient in control DataGridView(c#) Pin
Richard Andrew x6420-May-12 12:04
professionalRichard Andrew x6420-May-12 12:04 
AnswerRe: Apply gradient in control DataGridView(c#) Pin
Emanuel vargas20-May-12 15:30
Emanuel vargas20-May-12 15:30 
AnswerRe: Apply gradient in control DataGridView(c#) Pin
Luc Pattyn20-May-12 13:58
sitebuilderLuc Pattyn20-May-12 13:58 
AnswerRe: Apply gradient in control DataGridView(c#) Pin
Emanuel vargas20-May-12 15:43
Emanuel vargas20-May-12 15:43 
AnswerRe: Apply gradient in control DataGridView(c#) Pin
Luc Pattyn20-May-12 16:11
sitebuilderLuc Pattyn20-May-12 16:11 
AnswerRe: Apply gradient in control DataGridView(c#) Pin
Emanuel vargas21-May-12 5:20
Emanuel vargas21-May-12 5:20 
GeneralFuzzy C# code Pin
Cbadeg20-May-12 10:32
Cbadeg20-May-12 10:32 
GeneralRe: Fuzzy C# code Pin
Dave Kreskowiak20-May-12 11:39
mveDave Kreskowiak20-May-12 11:39 
GeneralRe: Fuzzy C# code Pin
BillWoodruff20-May-12 15:26
professionalBillWoodruff20-May-12 15:26 
QuestionHow to close (kill, release?) a socket, which is in FIN_WAIT_2 state? Pin
ShadowUz20-May-12 7:29
ShadowUz20-May-12 7:29 
AnswerRe: How to close (kill, release?) a socket, which is in FIN_WAIT_2 state? Pin
Ravi Bhavnani20-May-12 7:32
professionalRavi Bhavnani20-May-12 7:32 
GeneralRe: How to close (kill, release?) a socket, which is in FIN_WAIT_2 state? Pin
ShadowUz20-May-12 7:43
ShadowUz20-May-12 7:43 
AnswerRe: How to close (kill, release?) a socket, which is in FIN_WAIT_2 state? Pin
Ravi Bhavnani20-May-12 7:48
professionalRavi Bhavnani20-May-12 7:48 
QuestionHow to refresh or update DataGrid Cell Value ... Pin
nassimnastaran18-May-12 20:25
nassimnastaran18-May-12 20:25 
AnswerRe: How to refresh or update DataGrid Cell Value ... Pin
OriginalGriff18-May-12 20:51
mveOriginalGriff18-May-12 20:51 
AnswerRe: How to refresh or update DataGrid Cell Value ... Pin
Alan N19-May-12 3:06
Alan N19-May-12 3:06 
This is happening because a cell is still in edit mode when it's Value property is read. The new value does not become available until it has been committed and edit mode ended.

As you found out this can be done by moving the focus to another cell or control, but it can also be done programmatically by calling the DataGridView's EndEdit method.

Inserting the following line before you start reading values from the grid should fix the problem.
C#
dgv.EndEdit();

Alan.
GeneralRe: How to refresh or update DataGrid Cell Value ... Pin
nassimnastaran19-May-12 9:01
nassimnastaran19-May-12 9:01 
QuestionDoes This Only Happen To Me? Pin
Roger Wright18-May-12 18:53
professionalRoger Wright18-May-12 18:53 
AnswerRe: Does This Only Happen To Me? Pin
OriginalGriff18-May-12 20:58
mveOriginalGriff18-May-12 20:58 

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.