Ciao grazie per le risposte ho risolto in parte, con il codice proposto da Gianluigi sono riuscito a risolvere il maiuscolo implementando la regolazione automatica dell'altezza riga:
Public Sub TableView1_Save(Row As Integer, Column As Integer, Value As String)
If Column = 1 Then
TableView1[Row, Column].Text = Upper(Value)
Else
TableView1[Row, Column].Text = Value
End If
TableView1[Row, Column].WordWrap = True
TableView1.Rows[Row].Height = -1
End
mentre con il codice di Vuott sembra che gli eventi keypress e keyrelease sulla tableview non abbiano alcun effetto.
sto cercando di implementare questa funzione:
Public Function Numeri()
'solo numeri
If Key.Code >= 48 And Key.Code <= 57 Then
Else If key.Code = key.BackSpace Then
Else If key.Code = key.Delete Then
Else If Key.Code = Key.Left Then
Else If Key.code = Key.Right Then
Else If Key.Code = Key.Tab Then
Else
Stop Event
End If
End
per la gestione dei numeri, praticamente mi dovrebbe far utilizzare solo la parte numerica e alcuni tasti. Per il momento grazie