Click here to Skip to main content
15,896,468 members
Home / Discussions / C#
   

C#

 
AnswerRe: unresolved hashtable problem Pin
Luc Pattyn20-Apr-10 14:10
sitebuilderLuc Pattyn20-Apr-10 14:10 
AnswerRe: unresolved hashtable problem Pin
Som Shekhar20-Apr-10 18:18
Som Shekhar20-Apr-10 18:18 
GeneralRe: unresolved hashtable problem Pin
Jassim Rahma24-Apr-10 23:48
Jassim Rahma24-Apr-10 23:48 
GeneralRe: unresolved hashtable problem Pin
Som Shekhar24-Apr-10 23:56
Som Shekhar24-Apr-10 23:56 
GeneralRe: unresolved hashtable problem Pin
Jassim Rahma25-Apr-10 0:06
Jassim Rahma25-Apr-10 0:06 
GeneralRe: unresolved hashtable problem Pin
Som Shekhar25-Apr-10 0:17
Som Shekhar25-Apr-10 0:17 
GeneralRe: unresolved hashtable problem Pin
Jassim Rahma25-Apr-10 0:23
Jassim Rahma25-Apr-10 0:23 
GeneralRe: unresolved hashtable problem Pin
Som Shekhar25-Apr-10 0:33
Som Shekhar25-Apr-10 0:33 
What I understood from the complete QA is that you face an error when you access a member of hashtable.

I cannot go through each line of your code to identify where the problem happens till the time i cannot compile the complete code. If you can provide a stripped down version of three cs files which i can compile and find the error during run time, i could help.

You could otherwise try to add a breakpoint just before the line where error happens and look into contents of hashtable. may be you can write a method to do just this.

The following method will show the contents of the hashtable in the output window. When you see the error in the messagebox line, u can see if the content is available in the hashtable or not.
private void PostDataIntoDebug(Hashtable _sysem_parameters_hash)
        {
#if DEBUG
            foreach (var a in _sysem_parameters_hash.Keys)
            {
                  Debug.WriteLine(string.Format("{0} - {1}", a, _sysem_parameters_hash[a]));
            }
#endif
        }

GeneralRe: unresolved hashtable problem Pin
Jassim Rahma25-Apr-10 1:14
Jassim Rahma25-Apr-10 1:14 
GeneralRe: unresolved hashtable problem Pin
Som Shekhar25-Apr-10 1:25
Som Shekhar25-Apr-10 1:25 
GeneralRe: unresolved hashtable problem [modified] Pin
Jassim Rahma26-Apr-10 3:48
Jassim Rahma26-Apr-10 3:48 
GeneralRe: unresolved hashtable problem Pin
Som Shekhar26-Apr-10 3:54
Som Shekhar26-Apr-10 3:54 
GeneralRe: unresolved hashtable problem Pin
Jassim Rahma26-Apr-10 12:35
Jassim Rahma26-Apr-10 12:35 
GeneralRe: unresolved hashtable problem Pin
Som Shekhar26-Apr-10 17:41
Som Shekhar26-Apr-10 17:41 
QuestionVariable of type Pin
jabbawok20-Apr-10 10:18
jabbawok20-Apr-10 10:18 
AnswerRe: Variable of type Pin
Anthony Mushrow20-Apr-10 10:31
professionalAnthony Mushrow20-Apr-10 10:31 
GeneralRe: Variable of type Pin
jabbawok20-Apr-10 10:37
jabbawok20-Apr-10 10:37 
AnswerRe: Variable of type Pin
Luc Pattyn20-Apr-10 10:34
sitebuilderLuc Pattyn20-Apr-10 10:34 
GeneralRe: Variable of type Pin
jabbawok20-Apr-10 10:54
jabbawok20-Apr-10 10:54 
GeneralRe: Variable of type Pin
jabbawok20-Apr-10 11:00
jabbawok20-Apr-10 11:00 
GeneralRe: Variable of type Pin
Luc Pattyn20-Apr-10 11:09
sitebuilderLuc Pattyn20-Apr-10 11:09 
GeneralRe: Variable of type Pin
jabbawok20-Apr-10 12:53
jabbawok20-Apr-10 12:53 
GeneralRe: Variable of type Pin
Luc Pattyn20-Apr-10 11:03
sitebuilderLuc Pattyn20-Apr-10 11:03 
GeneralRe: Variable of type Pin
jabbawok20-Apr-10 11:12
jabbawok20-Apr-10 11:12 
GeneralRe: Variable of type Pin
Luc Pattyn20-Apr-10 11:15
sitebuilderLuc Pattyn20-Apr-10 11:15 

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.