Hello and good day.<br><br>I have the following problem:<br><br>I put a combo box (or another control) in a cell of a tableview. The ComboBox is set by clicking on the cell.<br>I use the following code:<br>' -----------------------------------------------------------------------------------------------<br>'Gambas class file<br><br>Private myCombo As ComboBox<br><br>Public Sub form_Open ()<br>myCombo = New ComboBox (TableView1.Children [0])<br>Object.Attach (TableView1, Me, "tabEvents")<br>  <br>  TableView1.Columns.Count = 2<br>  TableView1.rows.Count = 15<br>  TableView1.Columns [0] .Width = TableView1.W / 2 - 15<br>  TableView1.Columns [1] .Width = TableView1.W / 2 - 15<br>End<br><br>Public Sub showCombo (tabIndex As Integer)<br>  Dim Xstart, CorrY As Integer<br><br>  myCombo.w = TableView1 [0, 1] .Width<br>  myCombo.h = TableView1 [0, 1] .Height<br><br>  myCombo.Y = TableView1 [tabIndex, 1] .Y<br>  myCombo.X = TableView1 [tabIndex, 1] .x<br>End<br><br>Public Sub tabEvents_Click ()<br>  <br>  show combo (Last.row)<br>  <br>End<br><br>' --------------------------------------------------------------------------------------------------------------------<br><br>It works very well too.<br>But, if I scroll the view into the area whose cells are first visible by scrolling, then the position fails (thus here: myCombo.Y = TableView1 [tabIndex, 1] .Y)<br><br>Perhaps this can be compensated by a correction factor.<br>But I think the tableview should also place in the not (always) visible area correctly.<br><br>Thanks for the help - I need her :-(.<br><br><br><br>Von meinem Sony Xperia™-Smartphone gesendet