GeekArticles
Programming
PalmCreating Custom Table Items Under Palm OS
Author: developer.com |
Published: 10th Aug 2005 |
Visited: 324 times |
Add CommentFiled in: PalmBy Alex Gusev Tables (or grids) are very useful controls when you need to display and edit multiple data columns. Especially if column's types are different like checkboxes, text fields or popup triggers. In addition to standard cell types (described in Table.h) Table API provides an opportunity to create custom cells. This article highlights some aspects of custom table development. Getting started Let's cover shortly the basics of tables. Usual working flow is as follows: set type of...n
Read Article Sponsored Links
Related Articles
• External table intermittent errors I'm having a problem with External tables. Most of the time I can read the data in the table without any issue. But when I issue the query below I get an error.
<b>Contents of test.csv file</b>
<code>Tool type,ID
Common,1
Type1,2
Type2,3 ...
• Building a Visual Studio DebuggerVisualizer with a Custom Serializer For most any Serializeable object, making a DebuggerVisualizer is exceeding simple and examples abound. However, if you are trying to build a DebuggerVisualizer for an object which is not Serializable or takes too long to Serialize and Deserialize, things are not quite so simp ...