Visualizza messaggio singolo
Vecchio 15-09-2009, 10.34.44   #4
zemas
Newbie
 
L'avatar di zemas
 
Registrato: 14-06-2009
Messaggi: 24
zemas promette bene
Se non sbaglio il tooltip non accetta il vbcrlf
per fare quello che dici puoi usare delle alternative, ad esempio
al passaggio del mouse carichi in una textbox o in una label nascosta tutti i valori e poi cambi la proprietà in visibile.

Es.:
<<
Private Sub List1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)

Dim i As Integer
Label1.Caption = ""
For i = 0 To List1.ListCount - 1
Label1.Caption = Label1.Caption & vbCrLf & List1.List(i)
Next
Label1.Visible = True
End Sub
>>
zemas non è collegato   Rispondi citando