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
Contributors
User avatar
Agust1337
Coding God
Coding God
Posts: 2456
Joined: Fri Feb 19, 2010 8:18 pm

Custom combobox(my way ^^)
Agust1337
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;
Top-notch casual Dating
Lewis
Coding God
Coding God
Posts: 1564
Joined: Sun Dec 20, 2009 2:12 pm

Re: Custom combobox(my way ^^)
Lewis
Well thanks, Could be more detailed Anywho thanks anyway
Image
User avatar
Agust1337
Coding God
Coding God
Posts: 2456
Joined: Fri Feb 19, 2010 8:18 pm

Re: Custom combobox(my way ^^)
Agust1337
lewisfroom wrote:
Well thanks, Could be more detailed Anywho thanks anyway
Detailed how more?
Top-notch casual Dating
Lewis
Coding God
Coding God
Posts: 1564
Joined: Sun Dec 20, 2009 2:12 pm

Re: Custom combobox(my way ^^)
Lewis
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?
Image
User avatar
Agust1337
Coding God
Coding God
Posts: 2456
Joined: Fri Feb 19, 2010 8:18 pm

Re: Custom combobox(my way ^^)
Agust1337
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
Top-notch casual Dating
User avatar
tought5
New Member
New Member
Posts: 19
Joined: Fri Dec 10, 2010 6:50 pm

Re: Custom combobox(my way ^^)
tought5
nice :) ty dude
User avatar
Usman55
VIP - Site Partner
VIP - Site Partner
Posts: 2821
Joined: Thu Dec 24, 2009 7:52 pm

Re: Custom combobox(my way ^^)
Usman55
You used too many tools Agust but it did the job perfectly!
Image
7 posts Page 1 of 1
Return to “Source-Code”