Click here to Skip to main content
15,899,825 members
Home / Discussions / C#
   

C#

 
QuestionCrystal / MySQL / VS2005 Pin
Russell Jones8-May-07 3:16
Russell Jones8-May-07 3:16 
AnswerRe: Crystal / MySQL / VS2005 Pin
Gopal.S8-May-07 10:39
Gopal.S8-May-07 10:39 
QuestionHelp with looping thru a dataset with a binding navigator. Pin
Phoenix1018-May-07 3:03
Phoenix1018-May-07 3:03 
QuestionSearching string Pin
pavya_Cool8-May-07 2:30
pavya_Cool8-May-07 2:30 
AnswerRe: Searching string Pin
slkr1718-May-07 2:48
slkr1718-May-07 2:48 
QuestionComparing password when Encrypted with MD5 Pin
Rocky#8-May-07 2:23
Rocky#8-May-07 2:23 
AnswerRe: Comparing password when Encrypted with MD5 Pin
Colin Angus Mackay8-May-07 2:34
Colin Angus Mackay8-May-07 2:34 
QuestionStart and control a WebBrowser Pin
apet808-May-07 2:15
apet808-May-07 2:15 
AnswerRe: Start and control a WebBrowser Pin
SimulationofSai8-May-07 4:38
SimulationofSai8-May-07 4:38 
GeneralRe: Start and control a WebBrowser Pin
apet808-May-07 21:35
apet808-May-07 21:35 
QuestionHow to do this Pin
Stoumann8-May-07 2:03
Stoumann8-May-07 2:03 
AnswerRe: How to do this Pin
slkr1718-May-07 2:12
slkr1718-May-07 2:12 
AnswerRe: How to do this Pin
_mubashir8-May-07 2:12
_mubashir8-May-07 2:12 
AnswerRe: How to do this Pin
J4amieC8-May-07 2:23
J4amieC8-May-07 2:23 
AnswerRe: How to do this Pin
Sathesh Sakthivel8-May-07 2:41
Sathesh Sakthivel8-May-07 2:41 
QuestionBenchmarking of C# Event Calls Pin
slkr1718-May-07 1:57
slkr1718-May-07 1:57 
AnswerRe: Benchmarking of C# Event Calls Pin
Luc Pattyn8-May-07 7:28
sitebuilderLuc Pattyn8-May-07 7:28 
GeneralRe: Benchmarking of C# Event Calls Pin
slkr1719-May-07 20:36
slkr1719-May-07 20:36 
Questionloop hashtable Pin
arkiboys8-May-07 1:41
arkiboys8-May-07 1:41 
AnswerRe: loop hashtable [modified] Pin
Martin#8-May-07 1:49
Martin#8-May-07 1:49 
GeneralRe: loop hashtable Pin
arkiboys8-May-07 4:01
arkiboys8-May-07 4:01 
AnswerRe: loop hashtable Pin
Martin#8-May-07 4:20
Martin#8-May-07 4:20 
Hello,

Ok, I didn't got your question write at first.
You have to iterate to the main hashtable and cast the falues to Hashtable and iterate again threw that, to get your items.
foreach(DictionaryEntry de in MainHashtable)
{
    Hashtable subHT = de.Value as Hashtable;
    if(subHT!=null)
    {
        foreach(DictionaryEntry deSub in subHT)
        {
            //deSub.Value //here are your items!
        }
    }
}

To make it look a little more OOP, you could create a recursive method call, but in this special case it's not neccesary as it is not to abstract.

Hope it helps!

All the best,

Martin
GeneralRe: loop hashtable Pin
arkiboys8-May-07 4:42
arkiboys8-May-07 4:42 
GeneralRe: loop hashtable Pin
Martin#8-May-07 4:57
Martin#8-May-07 4:57 
QuestionNeed a masked (formatted) edit box which can work for date and time Pin
Mushtaque Nizamani8-May-07 1:30
Mushtaque Nizamani8-May-07 1:30 

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.