Custom combobox(my way ^^)
If you have completed an application and wish to share the complete source/project files with everyone then please post it in here. Source-code files only, no tutorials.
7 posts
Page 1 of 1
Okay how to make a custom combobox is piece of crap ^^
ok what you want to do is this:
1 Panel named Combobox1
1 Label called lblCharacter + set the label text to nothing
1 Picturebox named dropDown1
1 Listbox called List1
Okay
now it should look like this
![Image]()
then double click the dropdown1(must be click) and put this code:
If list1.Visible = False Then
list1.Visible = True
Else
If list1.Visible = True Then
list1.Visible = False
End If
End If
okay now you got that then double click list1(must be selectedindexchanged) and put this code:
lblCharacter.Text = list1.Text
now debug your program and you got your own customized combobox!
hope it helps you cooll;
ok what you want to do is this:
1 Panel named Combobox1
1 Label called lblCharacter + set the label text to nothing
1 Picturebox named dropDown1
1 Listbox called List1
Okay
now it should look like this

then double click the dropdown1(must be click) and put this code:
If list1.Visible = False Then
list1.Visible = True
Else
If list1.Visible = True Then
list1.Visible = False
End If
End If
okay now you got that then double click list1(must be selectedindexchanged) and put this code:
lblCharacter.Text = list1.Text
now debug your program and you got your own customized combobox!

hope it helps you cooll;
lewisfroom wrote:Well thanks, Could be more detailed Anywho thanks anywayDetailed how more?
Likethe source its just a chunk of code and i dont get it :/ maybe break te code down?, but now i look it is simple :P also a link to the images you used?
lewisfroom wrote:Likethe source its just a chunk of code and i dont get it :/ maybe break te code down?, but now i look it is simple :P also a link to the images you used?http://www.mediafire.com/ the combobox there haha :p
7 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023