Yea I meant CheckBoxs or RadioButtons sorry, and yea I was looking for a way other than that.
Gregory Bryant
Posts
-
CheckBox limiting. [modified] -
CheckBox limiting. [modified]So I hope this has a Simple answer. I have a program with 6 Options, they can be either RadioButtons or CheckBoxs, But I need to know how to limit the options to 3 or less? Is there an easy way to do this with out checking how many are true and building a checker?
modified on Thursday, October 15, 2009 11:15 AM
-
URL'snever mind I used an unbound list ^_^ thanks for your time though.
-
URL'snow I have to ask once you set DataSource is there anyway to full release it? Additional information: Items collection cannot be modified when the DataSource property is set. Because the program has a reset feature and this is the error I get when trying to clear the data from the both the listBox and the original list
-
URL'syeah thanks I found that after manually figuring out how to :P ^_^ thanks for all the help.
-
URL'sok I have all the Code but exactly how to create a Click Handler private void listBox1_Click(object sender, ??? e) { String item = listBox1.SelectedItem.ToString(); System.Diagnostics.Process.Start("http:site" + item); } what exactly should I have there?
-
URL'sListBox would be Fine, still don't know how myself so help?
-
URL'sI have a Program that displays a List in a textBox such as Items Items Items is there way that I can make the list in the textBox Click able so that it leads you to a Page depending on which item you click with out showing such as. http://Site/items http://Site/items ^_^ thanks for any help.
-
List<string> Help</string>Trying to Fill List string Items = new List string(); with textBox1.Text. Anyone help me out on how to do this, or point me to where I can Learn how? I want the code to read textBox1.Text until endofline add word to List then go to the next until the end.
-
C# calling formsSince you couldnt help here is how you do it declare a public, static variable of type Form1 just below the Form1 class declaration. I’ve named the variable frm1 public static Form1 frm1 = null; then when you show form2 frm1 = this; this.Visible = false; Form2 frm2 = new Form2(); frm2.Show(); then from form2 you can call Form1.frm1.show(); so thanks for all your help lol
-
C# calling formswell the fuction he is trying to tell me to use is Visual basic function try it your self works fine in VB but not C++ or C# which i was asking about
-
C# calling formsso in other words you dont know thanks lol
-
C# calling formsi am trying to open the first form from the second that does not work i get an error An object reference is required but i dont want to creat a new object and i do not know how to get the orginal object from my second form
-
Center align items in combo boxthey should have a text aling property
-
C# calling formsin c# i created the first form as a login the second displays a buddy list once you login the first form is hiden using Form1.hide(); now on the second one i have a log out button that i want to close the second form and open the original first form not a new object i have everything done but reopening the first form. thank you if you can help
-
Calling formsi do know console programming in c++ you can go to www.planetsourcecode.com and serch Gregory W Bryant under C++ to see my programs but i dont know really any c# and i created the first form as a login the second displays a buddy list now on the second one i have a log out button that i want to close the second form and open the original first form not a new object i have everything done but reopening the first form
-
Calling formsok i only know very little a made a form1 and a form2 what i do is hide form1 and open form2 now what i need to know is how then can i close form2 and reopen form1 anyone please
-
Why ++++i works and i++++ does not work?#include int main() { int i = 0; while(i<5) { std::cout << i; i++; } /* while(i<5) { std::cout << i; ++i; } */ std::cout << std::endl; std::cin >> i; return 0; }
-
Determining whether input is string or integerstart everything out using a char varable char number[100] then us a static_cast to turn it in to a int if the user enters a charcter they going to get sumthing crazy but other then that you could use if or catch statements
-
Recomended booksWoundering what books anyone would recomend for learning c++ such as winsock and other protocols for conecting to servers and clients the books ive read only go thro program control thanks for any suggestions.