answersLogoWhite

0

It Is EXTREMELY simple......scroll down for answer. YOU CAN'T NOOB!!!!!!!!!!!

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How do you find firewall?

CNET . Type in the combo box Comodo firewall and download for free.


How do you retrive a value from combo box whose values are retrived from database?

ii


How do you retreive values from sql database to combo box?

Need to find out how to create interface to the database with the programming language you use. e.g VB use dsn settings. Once connected you enter those setting to the properties of the combo and define which field you want to show.


What is the purpose of a Combo Box?

The purpose of a Combo Box is so that a person gets more food or whatever comes in the combo box, for less of a price then if they bought everything separate.


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.


Does combo box have an another name?

Theterm"combo box" is sometimes used to mean "drop-down list". In both Java and .NET, "combo box" is not a synonym for "drop-down list".


How do you retrieve data from an SQL database based on the values selected from combo box using jsp?

Try to repair sql database owing to utility below. Software is able to restore sql databases any version of MS SQL Server.


How could you set the selections available in a Microsoft Access form combo box to be dependent on the selection made in a previous combo box?

I haven't used Microsoft Access in a while but I think you would have to modify the action properties of the combo box (i.e. you select choice 1 from the first combo box, then choices a,b and c appear in the second combo box). In the second combo box's row source property add a reference to the first combo box in the criteria section of the field that matches the first combo box. For example, if the first combo box is bound to the field Table1ID, and combo box 2 is going to use that value to select records to display, based on records that match combo box 2's table's FKField value, then you would: a) go into the Combo Box 2 row source b) add the table's FKField (or whatever it's called) to the query (unless it's already there) c) and in the criteria row under the FKField, add: [Forms]![FormWithComboBoxes]![ComboBox1]!Table1ID (replace the above names with the specific names; you can also use the expression builder to get that expression). d) Then, in Combo Box 1's AfterUpdate event, add the following lines of code: Me.ComboBox2 = Requery Me.ComboBox2 = Null And that should do it. Hope that help


Fuse Box Diagram vauxhall combo 17di?

In the owners manual, download from Vauxhall website in pdf format. Copy and paste the link belowhttp://www.vauxhall.co.uk/vaux/static/pdf/manuals/Combo/1149-2225-file-Combo_QRG_TS_1650-A-08.pdf


Which control is suitable to choose a district from list of districtslistbox or combo box?

A list box.


Where to get preset combo for the masterlock 1500 id?

on the instructions in the box


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