TestEIn :

- gestione selezione punto e drag.
This commit is contained in:
Dario Sassi
2014-10-21 10:51:45 +00:00
parent 7e6a613e7a
commit 15c69a9925
7 changed files with 449 additions and 266 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ Public Class SelectMulti
Private Sub SelectMulti_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
ListBox1.BeginUpdate()
'Inserisco le entità nel mirino
Dim nId = EgtGetFirstSelectedObj()
Dim nId = EgtGetFirstObjInSelWin()
While nId <> GDB_ID_NULL
Dim sTitle As String = String.Empty
EgtGetTitle(nId, sTitle)
@@ -19,7 +19,7 @@ Public Class SelectMulti
sTitle += " (" & nId & ")"
Dim smItem As New SelMulItem(sTitle, nId)
ListBox1.Items.Add(smItem)
nId = EgtGetNextSelectedObj()
nId = EgtGetNextObjInSelWin()
End While
'Inserisco None per non selezionare alcunchè
Dim smNone As New SelMulItem("None", GDB_ID_NULL)