Problem with combobox

Kankichi

Member
Joined
Dec 11, 2008
Messages
8
Location
Lisbon, Portugal
Programming Experience
Beginner
Hi all, i have a problem with ComboBox, i have an form DataGridView and Details View. The Table in Details View have an ComboBox that have relation with other table, when i click on combo box to chnage data, my form stuck, i must do Ctrl+Alt+Delete ----> and end task, help me plz. :(

Off topic
Bad English:p
 
Ty for you interse, i just resolve the problem:D
here is the code


Dim adapter_entidades As New GestaoDataSetTableAdapters.EntidadesTableAdapter
Dim tab_entidades As New GestaoDataSet.EntidadesDataTable
adapter_entidades.Fill(tab_entidades)
Dim registo As DataRow
For Each registo In tab_entidades.Rows
N_contribuinteComboBox.Items.Add(registo.Item(0))
Next
 
Last edited:

Latest posts

Back
Top