Forum: C# Nov 2nd, 2007 |
| Replies: 6 Views: 15,216 Never mind figured it out. |
Forum: C# Nov 2nd, 2007 |
| Replies: 6 Views: 15,216 I created a text box event handler to only allow my textbox to accept Numbers only. The Event handler works great and does not allow anything but numbers except when the form first loads and the... |
Forum: C# Oct 27th, 2007 |
| Replies: 3 Views: 2,300 Thank You but I managed to solve it.
No it is not homework, I simply have never really worked with Forms before and I have never really done c# as well so this is very new to me. The more I work... |
Forum: C# Oct 23rd, 2007 |
| Replies: 9 Views: 4,621 Thank you the selected Index worked fine. |
Forum: C# Oct 23rd, 2007 |
| Replies: 9 Views: 4,621 I have a combobox that is populated by a SQL querry. Problem is the first item of the comboBox where normally the comboBox.text go is blank. You have to drop down the menu item for the items to... |
Forum: C# Oct 18th, 2007 |
| Replies: 3 Views: 2,300 I have been trying to get this work and so far the only way i cna get this to work is if I use a If else statement that is dependent on the a user selection. But since I do not know the values of the... |
Forum: C# Oct 17th, 2007 |
| Replies: 3 Views: 2,300 I have a Form that has 3 radio buttons grouped together. I have a default combobox selected on the form. When a user selects a item from the combo box a new combo box appears that is populated from... |
Forum: C# Jun 13th, 2007 |
| Replies: 3 Views: 8,924 Thank you, this does help a lot. I thought it had some thing to do with passing the form class to my other classes. I still think in terms of console. I understand what you are saying but still am... |
Forum: C# Jun 13th, 2007 |
| Replies: 3 Views: 8,924 This is the first time I have really done any GUI work. I had a console app in C++ that I rewrote into C# and am trying to make a GUI for it. However I am not sure how to display my classes show... |
Forum: C++ Jun 7th, 2007 |
| Replies: 2 Views: 629 Thanks, i figured it was something with my bracing but could not get it to work.
Thanks |
Forum: C++ Jun 7th, 2007 |
| Replies: 2 Views: 629 I have a binary tree and I am having problems with one function. It is my add function where I add another node to my tree. I use recursion to call it from within the function. I believe I am not... |
Forum: C++ Jun 4th, 2007 |
| Replies: 5 Views: 1,322 Well you did ask for char to double. I agree atoi sucks but he was asking for something simple. If you are trying to do a string to int or double do a simple search or post the code.
For Atof... |
Forum: C++ Jun 1st, 2007 |
| Replies: 2 Views: 1,714 Ahh thank you. I did that and it worked perfectly. |
Forum: C++ Jun 1st, 2007 |
| Replies: 2 Views: 1,714 I wrote a hash table that takes a char as a key and for a test I am using a string for my value. It uses a linked list. But I am having a problem displaying the value. I have a function that displays... |
Forum: C++ Jun 1st, 2007 |
| Replies: 5 Views: 1,322 You can use atoi to convert the char to a int or atof to a double |
Forum: C++ May 31st, 2007 |
| Replies: 1 Views: 899 I am trying to define a structure for a hash table. I am making a constructor in my structure but I cannot get it to work with anything except chars. Strings always get me confused as how to... |
Forum: C++ May 25th, 2007 |
| Replies: 1 Views: 1,122 I have trying to parse string data in a stack into a arithmetic equivalent. I implemented a stack and used strtok to parse it into tokens and placed them into my stack. Now I am trying to pull them... |