Results 1 to 6 of 6

Thread: Combobox bound to an objectdatasource reverts to empty string on lost focus

Threaded View

  1. #1

    Thread Starter
    Addicted Member coolwater's Avatar
    Join Date
    Dec 2004
    Location
    philippines
    Posts
    215

    Combobox bound to an objectdatasource reverts to empty string on lost focus

    I have a combobox that is bound to a objectdatasource. The combobox is used as a lookup.

    My problem is everytime the combobox looses its focus it reverts to an empty string. The selection disappears (text.property will result to empty string). This is very weird.

    Any ideas?

    My Code Below:

    Code:
     Public Class frmUsers_AddEdit    
    
         Private newUser As Users 
         Private usertypeList As List(Of UserType)
    
         Private Sub LoadComboboxes()
             Try
                 usertypeList = UserTypeDB.GetUserTypeList
                 UserTypeComboBox.DataSource = usertypeList
    
             Catch ex As Exception
                 MessageBox.Show(ex.Message, ex.GetType.ToString)
             End Try
    
         End Sub
    
         Private Sub frmUsers_AddEdit_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    
             Me.LoadComboboxes()
             UsersBindingSource.Add(newUser)
    
         End Sub 
    
     end class
    
     Databindings of my UserTypeComboBox:
    
        UserTypeComboBox.DataSource = UserTypeBindingSource
        UserTypeComboBox.DisplayMember = UserType
        UserTypeComboBox.ValueMember = UserTypeID
        UserTypeComboBox.SelectedValue =  UsersBindingSource - UserTypeID
    Last edited by coolwater; Jul 24th, 2013 at 02:47 PM. Reason: add

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width