Click here to Skip to main content
15,905,776 members
Home / Discussions / C#
   

C#

 
AnswerRe: freeing a variable Pin
Stanciu Vlad20-Apr-10 21:04
Stanciu Vlad20-Apr-10 21:04 
GeneralRe: freeing a variable Pin
AnirbanChak 20-Apr-10 23:06
AnirbanChak 20-Apr-10 23:06 
GeneralRe: freeing a variable Pin
Stanciu Vlad20-Apr-10 23:11
Stanciu Vlad20-Apr-10 23:11 
AnswerRe: freeing a variable Pin
Ice_Freez0520-Apr-10 21:06
Ice_Freez0520-Apr-10 21:06 
AnswerRe: freeing a variable Pin
OriginalGriff20-Apr-10 21:08
mveOriginalGriff20-Apr-10 21:08 
QuestionSend multiple SMS problem using Skype API Pin
Tridip Bhattacharjee20-Apr-10 20:13
professionalTridip Bhattacharjee20-Apr-10 20:13 
Questionauto update Pin
Member 59031020-Apr-10 19:53
Member 59031020-Apr-10 19:53 
AnswerRe: auto update Pin
Calla20-Apr-10 20:18
Calla20-Apr-10 20:18 
QuestionHow get USP device serial no Pin
anishkannan20-Apr-10 19:50
anishkannan20-Apr-10 19:50 
AnswerRe: How get USP device serial no Pin
sanforjackass20-Apr-10 21:52
sanforjackass20-Apr-10 21:52 
AnswerRe: How get USP device serial no Pin
Kythen21-Apr-10 6:18
Kythen21-Apr-10 6:18 
QuestionWaitOne won't wakeup Pin
doubleclick2d20-Apr-10 14:58
doubleclick2d20-Apr-10 14:58 
AnswerRe: WaitOne won't wakeup Pin
Luc Pattyn20-Apr-10 15:41
sitebuilderLuc Pattyn20-Apr-10 15:41 
Questionunresolved hashtable problem [modified] Pin
Jassim Rahma20-Apr-10 12:55
Jassim Rahma20-Apr-10 12:55 
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 

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.