Click here to Skip to main content
15,884,628 members
Home / Discussions / C#
   

C#

 
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 
Hi all !

I want to save the DataGrid Cell Value into an excel file :

C#
...
try
{
  mySheetInputData = (Microsoft.Office.Interop.Excel.Worksheet)ExWorkBookInputData.Sheets["Sheet1"];

  mySheetInputData = (Microsoft.Office.Interop.Excel.Worksheet)ExWorkBookInputData.ActiveSheet;

 mySheetInputData.Name = "mySheet";
...
for (int i = 0; i < RowCount; i++)
{
   for (int j = 0; j < ColumnCount; j++)
   {
       mySheet.Cells[i + 2, j + 2] = dgv.Rows[i].Cells[j].Value;
       if (dgv.Rows[i].Cells[j].Value == null || dgvRows[i].Cells[j].Value.Equals(""))
           mySheet.Cells[i + 2, j + 2] = 0.0;
    }
}

dgv.update();

....


when I save this to an excel file , last cell i fill , show the value of "0.0" , but when I resize or minimize the application or change the cursor in the next cell that fill before , there is no problem to show all value i put to DataGrid Cell.

thanks a lot !

modified 19-May-12 3:02am.

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 
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 
GeneralRe: Does This Only Happen To Me? Pin
Pete O'Hanlon18-May-12 22:42
mvePete O'Hanlon18-May-12 22:42 
GeneralRe: Does This Only Happen To Me? Pin
OriginalGriff18-May-12 22:47
mveOriginalGriff18-May-12 22:47 
GeneralRe: Does This Only Happen To Me? Pin
Pete O'Hanlon19-May-12 2:10
mvePete O'Hanlon19-May-12 2:10 
GeneralRe: Does This Only Happen To Me? Pin
OriginalGriff19-May-12 2:20
mveOriginalGriff19-May-12 2:20 
GeneralRe: Does This Only Happen To Me? Pin
BillW3319-May-12 7:05
professionalBillW3319-May-12 7:05 
QuestionA Layout Question, And A Bit More Pin
Roger Wright17-May-12 19:47
professionalRoger Wright17-May-12 19:47 
AnswerRe: A Layout Question, And A Bit More Pin
Pete O'Hanlon17-May-12 23:19
mvePete O'Hanlon17-May-12 23:19 
GeneralRe: A Layout Question, And A Bit More Pin
Roger Wright18-May-12 11:35
professionalRoger Wright18-May-12 11:35 
GeneralRe: A Layout Question, And A Bit More Pin
Pete O'Hanlon18-May-12 22:38
mvePete O'Hanlon18-May-12 22:38 
GeneralRe: A Layout Question, And A Bit More Pin
GuyThiebaut21-May-12 1:39
professionalGuyThiebaut21-May-12 1:39 
GeneralRe: A Layout Question, And A Bit More Pin
Pete O'Hanlon21-May-12 2:02
mvePete O'Hanlon21-May-12 2:02 
AnswerRe: A Layout Question, And A Bit More Pin
PIEBALDconsult18-May-12 5:18
mvePIEBALDconsult18-May-12 5:18 

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.