Recent content by DowdUCC

  1. D

    Warning message based on combobox selection

    I have a table (ComponentT) of different device components a user can select from ( generators, gearboxes, etc.) The table has 3 fields - ComponentName, ComponentType, ComponenentDetails I have a query returning all the ComponentDetails values. I then have a combobox that uses this query...
  2. D

    Warning message based on combobox selection

    The user selects a component in the combo box. Then they click the add button which inserts it into a table. Then they return to the combo box to add another component into the table. I want an error to be displayed if the name of the component in the combobox matches the name of a component...
  3. D

    Warning message based on combobox selection

    Hi, I have a combobox with several options for a device's parts. When one part is selected, it gets added to a device table. ComponentCmb Generator A Generator B Gearbox A Gearbox B Blades A Blades B Blades C Tower A Tower B I want to display an error message if an option is being selected...
  4. D

    Changing combobox text based on listbox selection

    Basically, i have a combo box of components a user can add into a device. Based on what is selected in the combo box, details of the component is displayed throughout the forms. All added components are displayed in a list box. But if the user has added new components after and wants to go...
  5. D

    Changing combobox text based on listbox selection

    I have a listbox with several options. When the user selects one of these items, i want a combo box's text to be changed to the selected item in the list box. The listbox is named : D_OutputLsb The combobox is named : D_ComponentNameCmb
  6. D

    How to make one string containins all of a column

    Of course. Say I have a table called UserSelectedComponentT with a column called ComponentName with 3 values like so: ComponentName Siemens 500 Generator Bosch PXS Gearbox LM 50 Blades how do i create a string that reads "Siemens 500 Generator - Bosch PXS Gearbox - LM 50 Blades"
  7. D

    How to make one string containins all of a column

    Hi, i want to make a string that contains all of the fields in a column. I have a table called UserSelectedComponentT with a column called ComponentName. I want a string that is essentially all the different component names seperated by a " + " . Is this possible?
Top Bottom