realbasic-nug.it
[Top] [All Lists]

Risolto il 'BUG' ListBox

To: REALbasic NUG Italian <realbasic-nug dot it at lists dot realsoftware dot com>, Marco Cumar <marco dot cumar at active-software dot com>
Subject: Risolto il 'BUG' ListBox
From: Lucio Liberi <lucioing at tin dot it>
Date: Tue, 20 Sep 2005 10:10:24 +0200
Cc:
Delivered-to: realbasic-nug dot it at lists dot realsoftware dot com
Basta aggiungere

Return true  nell'evento CellKeyDown e funziona anche su Mac

  Dim Tab as String
  Dim i, j As Integer

  i=row
  j=column+1

  Tab=Chr(9)

  if key=Tab then
    if j=5 then
      j=0
    end if
    ListBox1.EditCell i, j
  end if
  Return True  <<<-------


ciao a tutti e grazie!!!


lucio liberi

<Prev in Thread] Current Thread [Next in Thread>