Questions tagged [controls]

Use this tag for programming scenarios related to controls (interactive elements of the user interface).

A control is an interface element that a computer user interacts with.
Common controls include:

  1. Window A rectangle that represents a "window" into a document, form, or design area.

  2. Text box A box in which to enter text or numbers.

  3. Button An equivalent to a push-button as found on mechanical or electronic instruments.

  4. Hyperlink Text with some kind of indicator (usually underlining and/or color) that indicates that clicking it will take one to another screen or page.

  5. Drop-down list A list of items from which to select. The list normally only displays items when a special button or indicator is clicked.

  6. List box A GUI widget that allows the user to select one or more items from a list contained within a static, multiple line text box.

  7. Combo box A combination of a drop-down list or list box and a single-line textbox, allowing the user to either type a value directly into the control or choose from the list of existing options.

  8. Check box A box which indicates an "on" or "off" state via a check mark ☑ or a cross ☒. Sometimes can appear in an intermediate state (shaded or with a dash) to indicate mixed status of multiple objects.

  9. Radio button A button, similar to a check-box, except that only one item in a group can be selected. Its name comes from the mechanical push-button group on a car radio receiver. Selecting a new item from the group's buttons also deselects the previously selected button.

  10. Cycle button A button that cycles its content through two or more values, thus enabling selection of one from a group of items.

  11. Datagrid A spreadsheet-like grid that allows numbers or text to be entered in rows and columns.

  12. Slider A bar that allows users to make adjustments to a value or process throughout a range of allowed values.

8394 questions
2
votes
1 answer

Internet Explorer control won't load CSS and JS

I have embedded an IE control in a Win32 app. The only purpose of this app is to ensure that a URl is always loaded and being refreshed every N minutes. My problem is that almost always the first time the URL is accessed the CSS and JS files are not…
edmz
  • 3,350
  • 2
  • 22
  • 29
2
votes
1 answer

Difference between function returning State Integer () and State Int Integer

I am relatively new to Haskell and have struggled to find some clarification on this confusion. Given a function that takes an Integer as an input, what would be the difference between the function returning State Integer () and State Int…
amduck
  • 21
  • 5
2
votes
1 answer

Grid Control

I have been tasked to create a control that has hot spots that will allow drag and drop of images. These locations will change based on what is being dragged onto the control. After dropping the image on the control it will need the ability to move…
Billy
2
votes
2 answers

How can I organize large form elements on a page?

I have large number of form elements (80+) to design on the html page. Is there nice way to organize and design those elements ?
Loganathan Natarajan
  • 340
  • 1
  • 10
  • 26
2
votes
2 answers

Creating a tag input box like on Stack Overflow using Ruby on Rails

How can I build a tag text box thing like here on Stack Overflow using Ruby on Rails? Also, how do I handle the form post scenarios once the tags are submitted?
Sagar
  • 1,727
  • 4
  • 22
  • 30
2
votes
1 answer

Can not find control with unspecified name attribute Angular 14

I'm facing the the following error. And when I click at the line pointed with BLUE ARROW in the above image, it points to of of ngFor loop in my html template.