in Education by
I have a problem. DataGridView displays only date if time is midnight. First I thought that is because of my LINQ query which is dataGridView's data source. I couldn't change the query so I decided to add zeros from code. This is my code: for (int i = 0; i < dataGridViewRaporty.Rows.GetRowCount(DataGridViewElementStates.Visible); i++) { for (int j = 0; j < dataGridViewRaporty.Columns.GetColumnCount(DataGridViewElementStates.Visible); j++) { string wartoscKomorki = dataGridViewRaporty.Rows[i].Cells[j].Value.ToString(); if (wartoscKomorki.Contains("-") && wartoscKomorki.Length == 10){ wartoscKomorki = wartoscKomorki + " 00:00"; dataGridViewRaporty.Rows[i].Cells[j].Value = wartoscKomorki.ToString(); } } } I was surprised because zeros weren't added. Then I displayed those values in MessageBoxes and zeros appeared there. The conclusion is that dataGridView has got those values with zeros but doesn't show them. Is there any solution to show full DateTime format? JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
As I said all was because of dataGridView behaviour. This is the solution: dataGridViewRaporty.Columns[3].DefaultCellStyle.Format= "yyyy-MM-dd HH:mm";

Related questions

0 votes
    This is confusing, all I want is the Time from DateTime ? here is my code: clsdbo_RR.DateRecd = ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    This is confusing, all I want is the Time from DateTime ? here is my code: clsdbo_RR.DateRecd = ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    Derive a Canonical POS expression for a Boolean function F, represented by the following truth table : 1 A B C F 0 0 0 ... 1 0 1 1 1 1 Select the correct answer from above options...
asked Dec 23, 2021 in Education by JackTerrance
0 votes
    a) Derive a Canonical POS expression for a Boolean function F, represented by the following truth table : 1 A B C F 0 0 ... 1 0 1 1 1 1 Select the correct answer from above options...
asked Nov 28, 2021 in Education by JackTerrance
0 votes
    One ticket is selected at random from 50 tickets numbered 00, 01, 02, .... 49.Then the probability that the sum of ... 5/14 (d) 1/50 Select the correct answer from above options...
asked Nov 19, 2021 in Education by JackTerrance
0 votes
0 votes
0 votes
    1-09-20 Computer Ch-6 Photoshop CS6 1) Write down the name of components of photoshop (36 What is Marquee? What ... use of slice tood? Select the correct answer from above options...
asked Dec 24, 2021 in Education by JackTerrance
0 votes
    Let A, B and C be three events such that P(A)=0.3,P(B)=0.4,P(C)=0.8,P(A∩B)=0.08,P(A∩C)=0.28,P( ... 23≤P(B∩C)≤0.48 D. 0.23≤P(B∩C)≤0.48 Select the correct answer from above options...
asked Nov 15, 2021 in Education by JackTerrance
0 votes
    I have a VBA macro which copies a summary tab from one workbook to another. It works fine in 2010 ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 22, 2022 in Education by JackTerrance
0 votes
    This program is designed to allow a food pantry to take attendance. To that end, The admin enters ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 13, 2022 in Education by JackTerrance
0 votes
    To retrieve the day of the month from the Date object, which is the code to select? var date_obj = new Date(2016 ... .getMonth(); d) var month_day = date_obj.getDate(); #Loans...
asked Oct 9, 2020 in Technology by JackTerrance
0 votes
    The date stored in my database is 01-01-1900 for field emp_doj(Data Type DATE). But while retrieving ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 19, 2022 in Education by JackTerrance
...