There are probably several ways to do this, but what I did was to handle the
pendown event and use an algorithm I wrote that took the x & y position of
the stylus to figure out which table cell the user tapped on. Then I
displayed the contents of the cell in a form field.
Basically, if you handle the pendown event in your form event handler and
return "true" to the main event loop, you will be able to prevent PalmOS
from highlighting the cell.
> -----Original Message-----
> From: Blair, Matthew P. [SMTP:[EMAIL PROTECTED]]
> Sent: Wednesday, September 08, 1999 1:32 PM
> To: '[EMAIL PROTECTED]'
> Subject: Table events without setting TblSetRowSelectable?
>
> Hi,
>
> I have an application where I'm trying to use a table. What I want is for
> a
> user to tap on a row, and a dialog box to pop up. Unfortunately, it
> appears
> that I cannot capture TblSelectEvent or TblEnterEvent without calling
> TblSetRowSelectable. However, I do not want the rows to highlight when
> selected (a side effect of calling the TblSetRowSelectable function). Any
> pointers?
>
> Thanks,
>
> Matthew