unresolved hashtable problem [modified]
-
Ok. I went through the whole thing. So far, someone else hasn't been able to repeat your error. Everytime, binarycoder is answering your specific questions that you ask. Could you post your complete code that shows error? If it shows error then it can be solved. May be some mistake is happening somewhere.
The full code is already uploaded at sky drive as mentioned in my MSDN forum thread public_class.cs[^] main_form.cs[^] doctor_dashboard.cs[^]
-
The full code is already uploaded at sky drive as mentioned in my MSDN forum thread public_class.cs[^] main_form.cs[^] doctor_dashboard.cs[^]
Hi jrahma, I cannot compile this code for obvious reasons coz there are so many links in it. Can't you strip down this code to bare minimum and see just post the problem area? Basically public_class with minimum requirements and two basic forms with calling public_class? if the problem doesn't happen in that form, it is not a problem related to hashtable. Som
-
Hi jrahma, I cannot compile this code for obvious reasons coz there are so many links in it. Can't you strip down this code to bare minimum and see just post the problem area? Basically public_class with minimum requirements and two basic forms with calling public_class? if the problem doesn't happen in that form, it is not a problem related to hashtable. Som
as I have mentioned in my MSDN thread, I have no problme compiling the code because no errors dring the build. The error pops up a run time. I als don't have problem when moving the line: MessageBox.Show(public_var._sysem_parameters_hash("Name").ToString()); to main_form.cs
-
as I have mentioned in my MSDN thread, I have no problme compiling the code because no errors dring the build. The error pops up a run time. I als don't have problem when moving the line: MessageBox.Show(public_var._sysem_parameters_hash("Name").ToString()); to main_form.cs
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
} -
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
}I am getting: Object reference not set to an instance of an object. on this line:
foreach (var a in public_var._sysem_parameters_hash.Keys)
from your code... you might say because hashtable is not initilized or somkething similar.. but why? that's my question... Thanks...
-
I am getting: Object reference not set to an instance of an object. on this line:
foreach (var a in public_var._sysem_parameters_hash.Keys)
from your code... you might say because hashtable is not initilized or somkething similar.. but why? that's my question... Thanks...
jrahma wrote:
you might say because hashtable is not initilized or somkething similar.. but why? that's my question...
Well, this is the answer not the question. You need to go through your code step by step and find out where the hashtable was initialized. I went through the complete discussion once again on MSDN. What i understand is that you are utilizing the same hashtable from different forms but you are initializing them separately. I suggest making a small change of making the class and variable static and see if this solves your purpose:
static class public_class
{
public static Hashtable _sysem_parameters_hash;public static void get\_system\_parameters() { \_sysem\_parameters\_hash = new Hashtable(); \_sysem\_parameters\_hash.Add("Name", "Jassim Rahma"); } }
-
jrahma wrote:
you might say because hashtable is not initilized or somkething similar.. but why? that's my question...
Well, this is the answer not the question. You need to go through your code step by step and find out where the hashtable was initialized. I went through the complete discussion once again on MSDN. What i understand is that you are utilizing the same hashtable from different forms but you are initializing them separately. I suggest making a small change of making the class and variable static and see if this solves your purpose:
static class public_class
{
public static Hashtable _sysem_parameters_hash;public static void get\_system\_parameters() { \_sysem\_parameters\_hash = new Hashtable(); \_sysem\_parameters\_hash.Add("Name", "Jassim Rahma"); } }
Now I cleaned the whole application an created a new application just for the hashtable issue and I am still getting the same error. Hashtable project The above file has a hastable project with three files.. public_class.cs, Form1.cs and Form2.cs, you can see that no issue reading the value in Form1 load but when you click on Form2 it will throw the error... it's seems the hashtable was no initilized but i don't know what to do to fix this in Form2...
modified on Monday, April 26, 2010 9:54 AM
-
Now I cleaned the whole application an created a new application just for the hashtable issue and I am still getting the same error. Hashtable project The above file has a hastable project with three files.. public_class.cs, Form1.cs and Form2.cs, you can see that no issue reading the value in Form1 load but when you click on Form2 it will throw the error... it's seems the hashtable was no initilized but i don't know what to do to fix this in Form2...
modified on Monday, April 26, 2010 9:54 AM
Well it was easy to catch. Thanks for the effort of stripping it down. Just change
Form2 myForm = new Form2();
to
Form2 myForm = new Form2(public_var);
and it works. You created the Constructor but didn't use it.
-
Well it was easy to catch. Thanks for the effort of stripping it down. Just change
Form2 myForm = new Form2();
to
Form2 myForm = new Form2(public_var);
and it works. You created the Constructor but didn't use it.
Problem solved :) Thanks Som.... Thanks everyone...
-
Problem solved :) Thanks Som.... Thanks everyone...
:) Cool.