answersLogoWhite

0


Best Answer
  • LISTBOX CONTROL

    COMBOX CONTROL

    A LISTBOX CONTROL displays a list of items from which theuser can select one or more. If the number of items exceeds the number that can be displayed, a scroll bar is automatically added to the List Box control.

    a list box is appropriate when you want to limit input to what is on the list

    choices not on the list can be typed in this field.

    A COMBOX CONTROL combines the features of a text box and a list box. This control allows the user to select an item either by typing text into the combo box, or by selecting it from the list.

    a combo box is appropriate when there is a list of suggested choices

    A combo box contains an edit field.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

Combo box has an arrow down button or dropped down while list box is you just select on the list.

combo box:

1. We can select ony one option from list.

2. We can add ,edit,select info. at run time.

3. We have only drop down facility.

4. We can't use checkbox within combobox.

5. Occupies less space but shows only one value for visibility

List box:

1. We can select multiple option from list.

2. We can't add,edit info. at run time.

3. We have both drop up & drop down facility.

4. We can use checkbox within listbox.

5. Occupies more space but shows more than one value.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

A controll that lets the user select from many different options.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the Difference between combo box and list box in visual basic?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is combo box?

A combo box is a list of multiple values a user can select. Sometimes we refer to them as dropdown lists. When you click on it a list of value pops down and you can choose an option. They are very commonly seen on computers. To create them you use the Combo Box control in Visual BASIC.


What is the difference between pressing alt plus tab and ctrl plus alt plus tab?

The CTRL key is the only difference. What it actually does depends on the currently active program and/or control, and whether or not the key combo has been implemented or not. If not, the shell processes the key combo. On my system (Windows 7), both combos bring up the task switcher.


What is the Difference between combo box and list box in visual basic in Hindi translation?

A list box displays a list from which the user may make a selection. The default behaviour is to permit a single selection, but multiple selections are also permitted by changing the SelectionMode accordingly.A combo box combines a list box with a text box, but the list is limited to single selections only. Changing the DropDownStyle alters the behaviour of the combo box.The default style is DropDown, which permits the user to enter text that is not contained in the list, therefore the list provides suggested input for the user (and can be used to auto-complete the input text). The user can also click the drop down arrow to expose the list and make a direct selection as they would from a list.When the style is Simple, the list is exposed at all times, but otherwise behaves as per the default mode. But in DropDownList mode, the user is limited to only those items in the list.To sum up, if you need multiple-selections, then you must use a list box. For single selections, you can use either. If space is limited, a combo box is better, but if the list must be exposed then a list box will be smaller. However, if user-defined input is permitted, then you must use a combo box. A text box would also be an option, but the combo box also allows suggestedinput.


What do sewers do?

Transport waste and storm water if it is a combo system


Which type of control is most commonly placed in the detail section?

combo box

Related questions

What is difference between Motherboard and Combo Motherboard. who is compulsory for build a PC.?

what is difference between television and monitor.


What is combo box?

A combo box is a list of multiple values a user can select. Sometimes we refer to them as dropdown lists. When you click on it a list of value pops down and you can choose an option. They are very commonly seen on computers. To create them you use the Combo Box control in Visual BASIC.


Subway franchise combo report?

what is basic fixed in combo report of subwayrestaturent


What is the difference between combo drive and super drive?

Combo drive burns the CDs and play DVDs while the super drive can burn the DVDs along with running it as well.


How do you change the color of combo box in visual basics?

combobox.backcolor = (Name of colour)


What is the history behind Hamburg Germany?

it is a combo between old and new it is a combo between old and new


What is the difference between mother board and combo mother board?

combo motherboard are less powerfull they come with integrated CPU(Intel Atom, ADM F1, etc) and are meant for home theater PCs whereas motherboard does not


What is the similarity between list box and combo box?

The difference between list box and combo box is that-:The list box provides the list of items from which the user can select one or more, whereas in the combo box the user can select only one item from it.List boxes come in two styles: standard style and check box style. Combo boxes have three styles: drop down combo, simple combo and drop down list.We cannot edit the item present in the list box during run time, whereas we can edit the item present in the combo box.


What is the difference between a Guitar Amp and Guitar Combo Amp?

A regular guitar amplifier is generally just the amp head itself (no speaker box), while a combo amp contains the amplifier and the speaker all in one containment box.


Why are there no DVD recorder VCR combos with a tuner available?

what is the difference between a vcr & dvd combo with out tuner & one with. as far as recording a show on a vhs tape?


What is the difference between pressing alt plus tab and ctrl plus alt plus tab?

The CTRL key is the only difference. What it actually does depends on the currently active program and/or control, and whether or not the key combo has been implemented or not. If not, the shell processes the key combo. On my system (Windows 7), both combos bring up the task switcher.


How can you check date in combo box in vissual basic?

'Let the combo box name Cboif IsDate(Cbo.Text)=True thenMsgBox "Date True"elseMsgBox "Date false"end if