Search:

Type: Posts; User: .paul.

Search: Search took 0.58 seconds.

  1. Re: How to remove Duplicate Combobox & Load the value into Text box

    Your db field name is "model no" instead of "model"
    I'm not sure, but there might be further issues using a 2 word field name. The simplest fix is to change the field name in the db
  2. Re: How to remove Duplicate Combobox & Load the value into Text box

    Here's an alternative using a db as your datasource, This uses databinding:



    Imports System.Data.OleDb
    Imports System.Data.SqlClient

    Public Class Form1

    Dim dt As New DataTable
  3. Re: How to remove Duplicate Combobox & Load the value into Text box

    I just noticed your combobox is databound... The exact way to achieve what you're looking for depends on how you bound the comboboxes
  4. Re: How to remove Duplicate Combobox & Load the value into Text box

    This uses a List(of Class) and several LINQ methods - Select, Distinct, Where, First, and ToArray to query the list based on user selection:



    Public Class Form1

    Dim items As New List(Of...
Results 1 to 4 of 4



Click Here to Expand Forum to Full Width