Jump to content
Xtreme .Net Talk

whosyodaddy

Avatar/Signature
  • Posts

    84
  • Joined

  • Last visited

Everything posted by whosyodaddy

  1. sorry, i didn't know it would do that. the reason why i used the picture, was that before when i typed they had no clue what i was talking about. THANK YOU SO MUCH!! IT WORKS
  2. How do I open a website in the default browser?
  3. When I write code to display text in the text bar how do i make Returns? For Example: when i write this: TextBox1().Text = "Golden CH-6: Beat level 2 with 50,000 or more points Infinite missiles while in the car: Beat level 3 with 70,000 or more points, Get Mp model - poseidon guard: Get 130000 points and all 007 medallions for level 11, Get regenerative armor: Get 130000 points for level 11" (in code view the whole thing is in ONE LINE). it turns out like this in the textbox: Golden CH-6: Beat level 2 with 50,000 or more points Infinite missiles while in the car: Beat level 3 with 70,000 or more points, Get Mp model - poseidon guard: Get 130000 points and all 007 medallions for level 11, Get regenerative armor: Get 130000 points for level 11. But how would i make it turn out like this?: Golden CH-6: Beat level 2 with 50,000 or more points Infinite missiles while in the car: Beat level 3 with 70,000 or more points, Get Mp model - poseidon guard: Get 130000 points and all 007 medallions for level 11 Get regenerative armor: Get 130000 points for level 11" Please, Please, help! i know this is a simple question but i have no clue how to!! i am new, please help!
  4. well, i changed listbox2 to a textbox. i have the code and stuff. i am going to be making over 500 selections in Listbox1, and about 2 paragraphs text that will appear in Textbox1 for EACH selection in Listbox1. what would be the easiest method (code) for this? im not just doing one word like "dog" and "white". its more like this length: "muchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewordsmuchmorewords". so please help and tell what you would do.
  5. im sorry to say that all of you were wrong. here is the right code i needed: Dim s As String Dim i As Integer ListBox2.Items.Clear() i = ListBox1.SelectedIndex() s = ListBox1.SelectedItem() ' this is a test If (s.Equals("Something")) Then ListBox2().Items.Add("What Something?") ElseIf (s.Equals("007 Agent Under Fire")) Then ListBox2().Items.Add("Bam!") End If so just incase somebody asks a similiar question you can answer it right ;-)
  6. you mustve not read clearly, what about when clicking on something in Listbox1, for example "Cat" in listbox1, then press the button, then "Dog" appears in Listbox2. HOW!??!
  7. thanks for the link, that explains if something in the two box's are the same. but what about the Button??
  8. Hello everybody. I need some help to finish creating this project of mine. I have one Listbox, named Listbox1, a button, named Button1, and another Listbox, named Listbox2. When a user clicks on a certain text in Listbox1, then clicks Button1, how do i make it so that certain text comes up in Listbox2? For example: There are 5 different things listed in Listbox1, i select one of them, then click Button1, and then certain text for the thing i selected in Listbox1 comes up in Listbox2. How do i do this? If you give me code please tell me where to put it. Thank you! Help would be appreciated over and beyond.
×
×
  • Create New...