Search results for query: *

  1. VSBrowser

    Question {ComboBox} Search Navigation Option

    I dont understand please explain in detail
  2. VSBrowser

    Question {ComboBox} Search Navigation Option

    Yes and I'm sorry for the nagging. I have been stuck on this for a while and as I'm new to Visual Studio I am sure this is one of the most simple Questions in the world but I am not good enough yet. Please don't be pissed.
  3. VSBrowser

    Question {ComboBox} Search Navigation Option

    Yes Just to make sure I'm getting you Image1 and Image2 and Image 3 are all images from the ImageList1 and are only visible as images in combobox2 here is a link to an image ill show you. This is in debug and the combobox is dropped down in the top right hand corner Imageshack - completejpg.png
  4. VSBrowser

    Question {ComboBox} Search Navigation Option

    These are all part of the code that tells the combobox to display images ok here ill explain better [ComboBox2[\/] [TextBox1 ] [@..] <-----Search button ComboBox2 has three images in it [0]Image1 [1]Image2 [2]Image3 These are the image names i set to them in...
  5. VSBrowser

    Question {ComboBox} Search Navigation Option

    Public Sub Button7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button7.Click Select Case CStr(ComboBox2.SelectedItem) Case "google" CType(TabControl1.SelectedTab.Controls.Item(0)...
  6. VSBrowser

    Question {ComboBox} Search Navigation Option

    Hey I tried that and got this code Public Sub Button7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button7.Click Select Case CStr(ComboBox2.SelectedItem) Case "0" CType(TabControl1.SelectedTab.Controls.Item(0)...
  7. VSBrowser

    Question {ComboBox} Search Navigation Option

    Heres the combobox code Public Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.ComboBox2.Items.AddRange(items) Me.ComboBox2.DropDownStyle = ComboBoxStyle.DropDownList Me.ComboBox2.DrawMode = DrawMode.OwnerDrawVariable...
  8. VSBrowser

    Question {ComboBox} Search Navigation Option

    Hey Guys, I am in the middle of making an advanced webbrowser and am stuck on one issue. I found a code on the internet which allows me to put images in a combobox via an imagelist. I have 3 Images 1 for google, 1 for Yahoo and 1 for Youtube. I have come up with a basic code but dont know how to...
Back
Top