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

C#

 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
BillWoodruff10-Jun-19 1:27
professionalBillWoodruff10-Jun-19 1:27 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
Samiul0710-Jun-19 3:19
Samiul0710-Jun-19 3:19 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
OriginalGriff10-Jun-19 3:45
mveOriginalGriff10-Jun-19 3:45 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
BillWoodruff10-Jun-19 6:59
professionalBillWoodruff10-Jun-19 6:59 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
Samiul0710-Jun-19 12:27
Samiul0710-Jun-19 12:27 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
Samiul0710-Jun-19 12:44
Samiul0710-Jun-19 12:44 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
BillWoodruff10-Jun-19 17:05
professionalBillWoodruff10-Jun-19 17:05 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
BillWoodruff11-Jun-19 0:53
professionalBillWoodruff11-Jun-19 0:53 
To be sure the structure shown is accurate, we need to check for the presence of "DBNull" values: please run this code and show the result:
for (int i = 0; i < dt.Rows.Count; i++)
{
    DataRow row = dt.Rows[i];
    
    Console.Write($"row: {i}\t");
    
    for (int j = 0; j < dt.Columns.Count; j++)
    {
        var cvalue = row[j];
        string cstr = cvalue is DBNull ? "DBNull" : row[j].ToString();
        Console.Write($"{cstr}\t");
    }
    
    Console.WriteLine();
}

«Where is the Life we have lost in living? Where is the wisdom we have lost in knowledge? Where is the knowledge we have lost in information?» T. S. Elliot

GeneralRe: How to create a tree node with menu, submenu, child, item Pin
Samiul0711-Jun-19 5:31
Samiul0711-Jun-19 5:31 
AnswerRe: How to create a tree node with menu, submenu, child, item Pin
#realJSOP10-Jun-19 4:37
mve#realJSOP10-Jun-19 4:37 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
Richard MacCutchan10-Jun-19 4:49
mveRichard MacCutchan10-Jun-19 4:49 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
#realJSOP10-Jun-19 4:57
mve#realJSOP10-Jun-19 4:57 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
Gerry Schmitz10-Jun-19 5:40
mveGerry Schmitz10-Jun-19 5:40 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
#realJSOP10-Jun-19 9:17
mve#realJSOP10-Jun-19 9:17 
GeneralRe: How to create a tree node with menu, submenu, child, item Pin
Gerry Schmitz10-Jun-19 10:04
mveGerry Schmitz10-Jun-19 10:04 
QuestionHow to clean all the installers? Pin
_Q12_7-Jun-19 3:55
_Q12_7-Jun-19 3:55 
AnswerRe: How to clean all the installers? Pin
OriginalGriff7-Jun-19 4:05
mveOriginalGriff7-Jun-19 4:05 
PraiseRe: How to clean all the installers? Pin
Richard Deeming7-Jun-19 4:56
mveRichard Deeming7-Jun-19 4:56 
GeneralRe: How to clean all the installers? Pin
OriginalGriff7-Jun-19 5:06
mveOriginalGriff7-Jun-19 5:06 
GeneralRe: How to clean all the installers? Pin
_Q12_7-Jun-19 19:40
_Q12_7-Jun-19 19:40 
GeneralRe: How to clean all the installers? Pin
OriginalGriff7-Jun-19 20:11
mveOriginalGriff7-Jun-19 20:11 
GeneralRe: How to clean all the installers? Pin
_Q12_8-Jun-19 8:24
_Q12_8-Jun-19 8:24 
AnswerRe: How to clean all the installers? Pin
Gerry Schmitz7-Jun-19 6:31
mveGerry Schmitz7-Jun-19 6:31 
AnswerRe: How to clean all the installers? Pin
Eddy Vluggen7-Jun-19 8:38
professionalEddy Vluggen7-Jun-19 8:38 
AnswerRe: How to clean all the installers? Pin
Dave Kreskowiak7-Jun-19 14:39
mveDave Kreskowiak7-Jun-19 14:39 

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.