Problem with tables and OS 3.5

2008-05-29 Thread David Haupert
Hi, I have been trying endlessly to debug a number of problems with tables and OS 3.5. First off, if a form has coordinates other than 0, 0, 160, 160, there appears to be a bug in the 3.5 table routines such that it will initially draw the fields within the table at an offset equal

Lists vs Categories vs Tables

2008-05-29 Thread chris rotberg
should use for each control to optimize memory and performance? I have heard that categories should be limited to less than 10 entries, and a list would be more appropriate for displaying say 45 entries from a database. Are tables used ever for picking from lists? Thanks for any help

Linked List for Tables?

2008-05-29 Thread Tim Astle
... DisTableHPtr disTbl, disTblTemp; // some starting point code... disTbl = MemPtrNew(sizeof(DisTableH)); disTblTemp = disTbl; // etc Then moving down the list, freeing and allocating memory as necessary to the linked list. Is this the common way to do something like this when dealing with tables

Re: Linked List for Tables?

2008-05-29 Thread Tim Astle
. Is this the common way to do something like this when dealing with tables that can vary depending on records added or deleted? I coded a test to see if something works, but I know there is a memory leak resident. I want to find a suitable way to terminate this. + Timothy D. Astle

Re: Handles and tables question

2008-05-29 Thread Tim Astle
I decided to repost this for clarity purposes. I have a table set up similar to the Expense application, and I need to load data from a record and display it. I believe this is done by setting a function with: TblSetLoadDataProcedure(foo, ..., ...); My table rows are dynamic, and can be

Help with custom drawing for tables...

2008-05-29 Thread Gee Ng
Hi all! I need some help regarding the custom draw routines for tables. I started with the address book app, all is fine with the edit view when I compile the program (but of coz, it's the example!). I commented out the load and save procedures: // TblSetLoadDataProcedure (table, editDataColumn

Handles and tables question

2008-05-29 Thread Tim Astle
I read through the Palm Prog. Dev. guide about having textTableItem's in a table. I'm not exactly sure why Neal created a 2 dimensional array of global handles or more importantly, would I need to do this to my own application. My application has a table with a scrollbar, which reads records

Funny drawing problem with tables

2008-05-29 Thread Gee Ng
Hi all! I created an app starting with the source code from the address book. In the edit view of the address book, it uses a table with textTableItem on the right column. The drawing of the form is such that the left hand column (the labels) is highlighted while the text field is normal. I

Re: Fields in Tables (still)

2008-05-28 Thread valvo
I could do that, but, I want this table I/O cell to be right justified and numeric only. Neither the textTableItem nor any of the other standard styles support this. I KNOW I can do it with the customTableItem style and fields if I can just get the field to accept Grafitti input. Somebody must

Fields in Tables (still)

2008-05-28 Thread Greg Valvo
Subject: Re: [palm-dev-forum] Tables (sorry repeat) From: Holger Klawitter [EMAIL PROTECTED] Date: Mon, 24 Jan 2000 18:08:10 +0100 X-Message-Number: 37 I had the same problem, but after setting the row selectable (that's different from usable) everything worked fine. I'm a newbie Palm

Tables (sorry repeat)

2008-05-28 Thread Greg Valvo
Sorry, if this is a repost, but, the list server sent me a message saying my first attempt failed. ANYWAY: Hello, I'm a newbie Palm programmer and need a little assistance. I'm trying to do something that I thought would be relatively simple but is giving me a lot of problems. What I'm trying

Fields in Tables

2008-05-28 Thread Greg Valvo
Hello, I'm a newbie Palm programmer and need a little assistance. I'm trying to do something that I thought would be relatively simple but is giving me a lot of problems. What I'm trying to do is set up some Fields for user I/O inside a table using the customTableItem style (ala the sales

Re: Tables Fields ..

2008-05-28 Thread Steve Fillingham
Hehe, Im just merrily talking to myself here :) This may be a red herring, If I tell POSE to continue, the error never surfaces again until I reset. Also If I disable the POSE debug option for 'Low Memory Access' it disappears also (as expected). I suppose Im still curious to know if a low

Re: Tables Fields ..

2008-05-28 Thread Steve Fillingham
More to it .. Further testing of problem shows the following .. (if it helps anyone) .. 1. Only crashes if overwriting current text OR 2. Text reaches right limit of text field. I can append to end of a field w/o problem until it reaches right limit of field, then it crashes. Must note, I

Tables Fields ..

2008-05-28 Thread Steve Fillingham
Hi all, I am using the ROM downloaded from my IBM WorkPad c3 to emulate for in POSE. My app uses a Table with multiple columns and the last column is a text field (numeric only). When editing this column of data, the POSE emulator is falling over in ExpandFieldHeight() during a keyDown

Dynamic Tables

2008-05-28 Thread Sally Anne Palmer
Hi, I'm developing a large scale application which uses the Dynamic UI features of the PalmOS to create froms, controls, etc. I really want to be able to dynamically create tables, however I read in the companion that this can not be done dynamically. I was wondering what the reason (apart

Re: Web Clipping Tables

2008-05-28 Thread Bradly J. Barton
If what you were after is One Two You should add an extra /trtr pair below: table tr TD One /TD /trtr TD Two /TD /tr /table If you are trying to spread them out more, you'll need to add column sizes to the tags in the appropriate places. Also, you might get more support

Re: Question about tables

2008-05-28 Thread chongwm
I had the NULL handle problem with redrawing my table cells before. I'm using my own custom table drawing callback to draw my cells. The way I get data for the cell is to use recH=DmGetRecord(xxx, index), and after I'm done drawing, I did a MemHandleFree(recH). Which is wrong and BAD. Because

re: Question regarding tables and scrolling

2008-02-19 Thread Ekra
not able to get your question -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Question regarding tables and scrolling

2008-02-18 Thread Leandro Pelorosso
Hi! I have a table with non editable text fields. Some rows get sometimes cutted, not being able to display the whole text (i.e. the row is bigger than the height of the table or the row starts too close to the bottom), so I would like that when I press the scroll down button, the first line of

Trouble With Tables

2007-07-04 Thread chodges
Hello: Hopefully someone can help me with table programming. I have a table on my form that has 11 rows and 2 columns. So the rows are more than will fit on the screen at any given time. The problem that I'm having is that when I initialize the table with data I keep getting the following

Re: Trouble With Tables

2007-07-04 Thread Lionscribe
Didn't get a chance to study your code, but I noticed one big bug. Each gMemHandle should be initialized to 0, and then the code in populatePage should be: for(i=0;i11;i++){ if(gTextHandles[i]) MemHandleFree(gTextHandles[i]); Doubt this will solve your issue. Lionscribe

Is it possible to store several tables in one pdb file?

2006-12-07 Thread Ron
Hi, I was just wondering if it is possible to store several tables in one pdb file? Cheers -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

want to learn how to create graphical objects such as buttons, tables and list boxes

2006-11-09 Thread carlos
want to learn how to create graphical objects such as buttons, tables and list boxes for the new devices as tungstens and TX. where can I go for the information? I just inherited the app and need to upgrade it to the newer devices. Thanks one and all... dt.lcr -- For information on using

Navigationmap and tables

2006-06-02 Thread Remi Ricard
Hi, I'm trying to add the 5-way navigation to my palm application (pFuel) and I have some problems. I'm able to navigate the different buttons but I'm not able to select the table and then navigate between the rows of the table. So my question is: Is it possible to select a table and then

How to set focus to the buttons and tables around with fiveway keys pushed.

2006-04-20 Thread howiun
hello, i want to know how can i set the focus to the buttons and table when i pushed the fiveway keys. now when i set the focus to a table, there isn't the highlight square around it. who can tell me the reason? thanks. Howiun -- For information on using the PalmSource Developer Forums, or

tables show up, but no event is generated on tap

2006-04-18 Thread Andrew
. Doing this makes all the elements in the tables show up correctly, however when i go to view - events in the simulator, no events are showing up when I tap/click on the table. Is there any suggestions without pasting the code that anybody has? -- For information on using the PalmSource Developer

Re: tables show up, but no event is generated on tap

2006-04-18 Thread Douglas Handy
Andrew, I have created a table with two rows, height 24 each... Is there any suggestions without pasting the code that anybody has? As I recall, with some versions of the OS it doesn't handle well cells over 11 pixels high and taps are only detected in the top 11 pixels of a row. Do you get

Re: tables show up, but no event is generated on tap

2006-04-18 Thread Andrew
I did use tallCustomTableItem, and I tapped 50+ times to see if I could find the spot... No events are generated at all no matter where I tap, except if it's in the menu. Andrew -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see

Re: tables show up, but no event is generated on tap

2006-04-18 Thread JamesSturdevant
TblSetItemStyle, Int, setting columnUsable, and setting my CustomDrawProcedure, and then drawing the form. Doing this makes all the elements in the tables show up correctly, however when i go to view - events in the simulator, no events are showing up when I tap/click on the table. Is there any

Re: tables show up, but no event is generated on tap

2006-04-18 Thread Andrew
No, it's not editable. Should it be? It's going to be for displaying information. Andrew -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: tables show up, but no event is generated on tap

2006-04-18 Thread JamesSturdevant
In my case events weren't generated until I set it to editable. If it's just for display, I think thats what you want. If you want something to happen when an item is tapped, it should be editable. You can disable the table highlighting with the EditIndicator functions. JamesS Andrew wrote:

Re: tables show up, but no event is generated on tap

2006-04-18 Thread Andrew
); } FrmDrawForm(pForm); Just to repeat, the cells/tables display just fine, it's just there's no event created whenever I click/tap on it... Thanks, Andrew -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: tables show up, but no event is generated on tap

2006-04-18 Thread Andrew
Thanks a lot, it looks to be working great. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

i want to draw tables(constructors)using program...... plz help me

2006-03-29 Thread kishor . bhushan
Hi i am new to palm os, so plz help me in solving this... problem: i have 'N' database files and each have different fields. i want to disply the contents of these fields in the form of tables using table constructor in resource file. This can be done by drawing 'N' tables(constructor

re: Focus Rings and Tables.

2006-02-21 Thread Doug Gordon
I think that your call to TblSetSelection or TblSelectItem is undoing the table focus and the halo ring. I fully support the one-handed nav in my app, which is heavy on tables, but I pretty much had to take over all of the management of the selected items in the table. Mixing the old table

re: Focus Rings and Tables.

2006-02-21 Thread Brian Schau
Hi Doug, Thanks for the insight. I managed more or less on my own (and sheer luck to get something working). I can now focus a table, set the highlight, move the highlight up and down (+ left and right on multicolumn tables) and also select a item. I just wished Palm had released a decent API

Focus Rings and Tables.

2006-02-20 Thread Brian Schau
Hello, I've been playing around with Focus Rings on the Treo Simulator (the 650 Sim). Environment: Windows XP SP2, Cygwin, prc-tools (latest). I have a simple form consisting of a table, a button and a menu: FORM ID fMain AT (0 0 160 160) NOFRAME MENUID mMain BEGIN TITLE Trams

Regarding Tables

2006-01-25 Thread sanjib mohanty
Hai all, i am right now working on palm os database.In that i am loading data into database and while retetriving for database some problem is comming when ever i add to database the table row value is increasing but i am unable to display the values into table .can u any body tel me how to handle

Problem with Palm Tables

2006-01-24 Thread sanjib mohanty
Hai all, i am right now working on palm os database.In that i am loading data into database and while retetriving for database some problem is comming when ever i add to database the table row value is increasing but i am unable to display the values into database can u any body tel me how to

re: Dynamic Tables -- How?

2005-05-16 Thread John Newell
OK - tables seem to me to be a poor relation in the OS UI. You have to do practicaly everything yourself. So, create the table resource with a size such that it can fit on the form. e.g. Vrows. Create a scrollbar resource the same height as the table. In the app, use SysCreateDatabaseList

re: Dynamic Tables -- How?

2005-05-15 Thread Dr. Vesselin Bontchev
tiny arrows that would allow the user to scroll the list. But it will display at every single time, of course, only as many elements of the list as would fit on the screen portion of it, specified with the Resource Editor. BTW, all this is relevant to *lists*. Tables are a completely different

re: Dynamic Tables -- How?

2005-05-15 Thread Evan Ovadia
Wait... lists are the ones with the tiny arrows? So that means tables are the ones with the scrollbars... Are they that different from lists or is it the same concept? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support

Dynamic Tables -- How?

2005-05-14 Thread Evan Ovadia
Hey everyone. There's been a lot of times that I've seen a list of all the databases on the palm. But when I try to make a list in the Resource Editor, it says that it's predetermined, and it's set in stone practically! How do developers make lists that are dynamic like that? Thanks - Evan --

tables

2005-04-04 Thread Orasanu Iuliana
i want to create a table that contains different items on the same column, but on diffrent rows. can i do this? is yes, how? i want on the first row a checkbox, and on the same cloumn on the 2 row, nothing or a text box. Best regars and 10q for ur help, Iulia -- For information on using the

problem using scroll bar with tables

2005-04-04 Thread rupesh kumar
can anyone send me some source code or a link on how to use a scrollbar with tables . any book suggested... i have made a table and fetching record from database where i want to display only 10 records at a time and for further records i want to use scrollbar.please help... in advance thanks

RE: tables

2005-04-04 Thread Prabakar MP
. -Original Message- From: Orasanu Iuliana [mailto:[EMAIL PROTECTED] Sent: Monday, April 04, 2005 4:14 PM To: Palm Developer Forum Subject: tables i want to create a table that contains different items on the same column, but on diffrent rows. can i do this? is yes, how? i want on the first

performance with filling tables

2005-04-01 Thread bioinfonews
Hi, I've got a table with two columns, both custom style, thus both using a custom drawing routine. I've used two different methods for filling the table with data, and I would like to know which one is more appropriate, in terms of performance, memory consumption and the way of Palm. 1.

Treo 5-way, secondary focus, editable tables

2005-03-23 Thread J Wilson
table, but I can't get it working on a table that allows for in-place editing.) Does anyone know how to get this secondary focus highlight working for tables that allow in-place editing? Or does anyone know of anywhere where I can get the Treo's To Do List app code? The only option I can think

Resizing Tables

2005-02-17 Thread Stefan Stolz
Hello everybody, currently I'm adding DIA-Support to an Legacy-Application. I've managed the first part with the resize-Lib from palmresize.sourceforge.net . But now i have a strange Problem with resizing Tables. There is no Problem to change the width in Landscape-Mode. But the Table won't

Re: Resizing Tables

2005-02-17 Thread Henk Jonas
Stefan Stolz wrote: Hello everybody, currently I'm adding DIA-Support to an Legacy-Application. I've managed the first part with the resize-Lib from palmresize.sourceforge.net . But now i have a strange Problem with resizing Tables. There is no Problem to change the width in Landscape-Mode

Re: Yet about tables and fields

2005-02-04 Thread AyloNs Hazzud
Nobody can help me? I´vre read the companion many times, but tried to find how the AddressBook manages it, but I´m stuck. Must I set the point usin TblSetItemPtr or the implementing the function set bt TblSetLoadDataProcedure is enough? On Thu, 03 Feb 2005 12:10:38 -0200, AyloNs Hazzud [EMAIL

Re: Yet about tables and fields

2005-02-03 Thread AyloNs Hazzud
On Thu, 03 Feb 2005 00:03:58 -0600, Logan Shaw [EMAIL PROTECTED] wrote: AyloNs Hazzud wrote: Err PrvMedindoPegaItem(void *tableP, Int16 row, Int16 column, Boolean editable, MemHandle *dataH, Int16 *dataOffset, Int16 *dataSize, FieldPtr

Re: Yet about tables and fields

2005-02-02 Thread AyloNs Hazzud
, 01 Feb 2005 23:59:04 -0200, AyloNs Hazzud [EMAIL PROTECTED] wrote: Im really in trouble when dinamically creating fields inside tables: Every time I add text to the field, my emulator complains twice about reading in low memory (first reading the 0x02 and them 0x00, the same address every

Re: Yet about tables and fields

2005-02-02 Thread Logan Shaw
On Tue, 01 Feb 2005 23:59:04 -0200, AyloNs Hazzud [EMAIL PROTECTED] wrote: Im really in trouble when dinamically creating fields inside tables: Every time I add text to the field, my emulator complains twice about reading in low memory (first reading the 0x02 and them 0x00, the same

Re: Yet about tables and fields

2005-02-02 Thread AyloNs Hazzud
Actually Ive already sent the code last week to the list, as I had no aswer, tried another aproach. Here is the load procedure set in the tblsetloadprocedure: Err PrvMedindoPegaItem(void *tableP, Int16 row, Int16 column, Boolean editable, MemHandle *dataH, Int16 *dataOffset, Int16

Re: Yet about tables and fields

2005-02-02 Thread Logan Shaw
AyloNs Hazzud wrote: Err PrvMedindoPegaItem(void *tableP, Int16 row, Int16 column, Boolean editable, MemHandle *dataH, Int16 *dataOffset, Int16 *dataSize, FieldPtr fld){ FieldAttrType attr; Char * dataP; AnPiRecordPtr

Yet about tables and fields

2005-02-01 Thread AyloNs Hazzud
Im really in trouble when dinamically creating fields inside tables: Every time I add text to the field, my emulator complains twice about reading in low memory (first reading the 0x02 and them 0x00, the same address every time). What am I doing wrong? At the load procedure, I

Yet about text fields in tables

2005-01-28 Thread AyloNs Hazzud
I though i´ve done everything just rigth: set each table item to narrowTextTableItem, and there goes my CallBack function set with TblSetLoadDataProcedure. When loading the table it runs ok (the FlpFtoTexto function writes the numeric data in a specially formated format). But when I try to edit

Re: DIA support for tables (TblGetNumberOfRows() doesn't update)?

2005-01-03 Thread Karl-Otto Rosenqvist
Hi Ben! Ok, that might work if you just need to increase the number of rows. I want my app to be able to change the font of the table just like the PIM apps does. The problem that I encounter here is that the if I set the height of the row calculated from the height of the table divided by the

Tables.

2004-12-11 Thread Prabakar
Hi, Where is the sample code(complete .mcp file using .rsrc resource) available for using Tables with records storing in the Database? Can anyone give the detail Link, if u know? - Prabakar. [EMAIL PROTECTED] -- For information on using the Palm Developer Forums, or to unsubscribe, please

Re: Tables.

2004-12-11 Thread Ben Combee
At 10:51 PM 12/11/2004, you wrote: Hi, Where is the sample code(complete .mcp file using .rsrc resource) available for using Tables with records storing in the Database? Can anyone give the detail Link, if u know? Yes. You should look at the AddressBook application that comes with CodeWarrior

PilRC and color tables

2004-11-05 Thread g3BEPA
Hi Group, in PilRC docs is written: The inclusion of the bitmap color table is not recommended as it slows down system performance. PilRC implements a simple color table matching algorithm to match the bitmaps colortable to the system palette. so my question is : how to add bitmap that has NO

Re: PilRC and color tables

2004-11-05 Thread Aaron Ardiri
in PilRC docs is written: The inclusion of the bitmap color table is not recommended as it slows down system performance. PilRC implements a simple color table matching algorithm to match the bitmaps colortable to the system palette. so my question is : how to add bitmap that has NO

Re: PilRC and color tables

2004-11-05 Thread g3BEPA
I cant find this tag anywhere in the pilrc docs... :-( Am I looking at the right place? (http://epo.enix.org/download/pilrc.html) -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: PilRC and color tables

2004-11-05 Thread Aaron Ardiri
I cant find this tag anywhere in the pilrc docs... :-( Am I looking at the right place? (http://epo.enix.org/download/pilrc.html) PilRC v2.7a / PilRCUI maybe you are looking at very old documentation? grab the latest from http://pilrc.sourceforge.net/ --- Aaron Ardiri (Skype::

Suppoting huge switch statements (i.e. giant jump tables)

2004-09-30 Thread Robert Hildinger
Greetings All, Please forgive me for crossposting the following (it's also posted to the newsgroup codewarrior.palm), but I wanted to get maximum exposure to this. Also I was curious if PODS 1.1 can handle these types of huge switch statements without choking... --- I've come

Problems with Tables

2004-09-22 Thread Darkseid
When I use these functions: TblSetItemType(table, i, 0, label TblSetItemPtr(table, i, 0, text); to show some text in a Table, the text appears with a : in the final. And I would want to left align the text. How can I solve this?! -- For information on using the Palm Developer Forums, or to

Re: Problems with Tables

2004-09-22 Thread Ben Combee
At 04:46 PM 9/22/2004, you wrote: When I use these functions: TblSetItemType(table, i, 0, label TblSetItemPtr(table, i, 0, text); to show some text in a Table, the text appears with a : in the final. And I would want to left align the text. How can I solve this?! Use a custom table cell type.

Re: DIA support for tables (TblGetNumberOfRows() doesn't update)?

2004-08-23 Thread Ben Combee
At 12:23 AM 8/23/2004, you wrote: I am finding that when I open the DIA (or use a small Fonts4OS5), the number of rows for my table do not get updated. TblGetNumberOfRows() always returns '10' no matter what I do; even though my manual calculations says I should be getting 16! What's worse is

DIA support for tables (TblGetNumberOfRows() doesn't update)?

2004-08-22 Thread Gregg Woodcock
I am finding that when I open the DIA (or use a small Fonts4OS5), the number of rows for my table do not get updated. TblGetNumberOfRows() always returns '10' no matter what I do; even though my manual calculations says I should be getting 16! What's worse is there is no API to force a change to

Tables

2004-08-12 Thread Patrick Lucas
I woulk like to get the style of a table item knowing the row and column. I can see plenty of functions for thgings like Int, Ptr, Font but none for the style. Can I access it directly from the Table Type structure? -- For information on using the Palm Developer Forums, or to unsubscribe,

Re: drawing tables

2004-06-23 Thread Hanumanth rao
Hi Surely you can do this by using this API functions given below WinDrawLine(2,39,160,39); WinDrawGrayLine(2,142,160,142); Refer the palmos reference documentation for detailed explanation. hanumanth Roberto Pedrozo Mendes [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote in message news:[EMAIL

drawing tables

2004-06-22 Thread Roberto Pedrozo Mendes
Hi There is a manner that i cam draw lines betwen columns in one table ? Thanks = Roberto Pedrozo Mendes Arquiteto Sistemas HST - CPqD - Campinas [EMAIL PROTECTED] __ Yahoo! Mail - agora com 100MB de espaço, anti-spam

Re: Tables and colons?

2004-05-07 Thread Salli
thank you :) I realised what the problem was with the colons just after I posted the question! Ben Combee [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] At 11:14 AM 5/6/2004, you wrote: I have a table with two columns in. I've set both of these columns to text type using

Tables and colons?

2004-05-06 Thread Salli
I have a table with two columns in. I've set both of these columns to text type using TblSetItemStyle eg: TblSetItemStyle(table,0,0,labelTableItem) Then, I load up information into them using TblSetItemPtr e.g: TblSetItemPtr(table,0,0,temp) (temp is declared as char temp[50];) When I view my

Re: Tables and colons?

2004-05-06 Thread Ben Combee
At 11:14 AM 5/6/2004, you wrote: I have a table with two columns in. I've set both of these columns to text type using TblSetItemStyle eg: TblSetItemStyle(table,0,0,labelTableItem) Then, I load up information into them using TblSetItemPtr e.g: TblSetItemPtr(table,0,0,temp) (temp is declared as

Tables with ScrollBar

2004-05-06 Thread Marilia Mendes
Please, somebody can order me or indicate some exemplo(aplication) that uses tables with scrollbar? Please, any aid will be coming well! thanks, Marília __ Yahoo! Messenger - Fale com seus amigos online. Instale agora

Re: Tables with ScrollBar

2004-05-06 Thread Dave Lasker
Look at the built-in DateBookapplication, whose source code is included with the SDK. The file you are interested in is DateAgenda.c. HTH... Dave Marilia Mendes wrote in message news:[EMAIL PROTECTED] Please, somebody can order me or indicate some exemplo(aplication) that uses tables

creating tables dynamically?

2004-04-09 Thread wax wacky
Can't I create a table dynamically??? -- __ IndiaInfo Mail - the free e-mail service with a difference! www.indiainfo.com Check out our value-added Premium features, such as an extra 20MB for mail storage, POP3, e-mail forwarding, and ads-free

Re: creating tables dynamically?

2004-04-09 Thread Ben Combee
At 04:32 AM 4/9/2004, you wrote: Can't I create a table dynamically??? Because there's no FrmNewTable or TblNewTable calls in Palm OS. Same thing for scroll bars -- these are features that just aren't there. -- Ben Combee, senior DTS engineer, PalmSource, Inc. Read Combee on Palm OS at

tables with color rows - Someone Know ?

2004-03-25 Thread Roberto Pedrozo Mendes
Hi How i put color in specific row or colunm in one table ? I resolve part of the problem when I invert the color of window but i would want to put colors in this row. Thanks = Roberto Pedrozo Mendes Arquiteto Sistemas HST - CPqD - Campinas [EMAIL PROTECTED]

Re: tables with color rows - Someone Know ?

2004-03-25 Thread Pravin Tamkhane
How i put color in specific row or colunm in one table ? I resolve part of the problem when I invert the color of window but i would want to put colors in this row. use your custom draw function ( TableDrawItemFuncType) for drawing table. -- For information on using the Palm Developer

Re: tables with color rows - Someone Know ?

2004-03-25 Thread Sebastian Voges
On Thu, 25 Mar 2004 09:15:59 -0300, Roberto Pedrozo Mendes wrote: Hi How i put color in specific row or colunm in one table ? I resolve part of the problem when I invert the color of window but i would want to put colors in this row. Thanks Hi, do you use a custom draw function for your

tables with color rows

2004-03-24 Thread Roberto Pedrozo Mendes
Hi How i put color in specific row or colunm in one table ? Thanks = Roberto Pedrozo Mendes Arquiteto Sistemas HST - CPqD - Campinas [EMAIL PROTECTED] __ Yahoo! Mail - O melhor e-mail do Brasil! Abra sua conta agora:

Tables resources in PALMOS

2004-03-18 Thread Desenvolvimento 3
Hello everybody, I would like to find more information about Table Resources in PalmOS. I wrote some applications that use table, but I think it is poor when you look at tables resources in PocketPC. I heard about to write my own table using the gadget resource but I didn´t find any information

Re: T3 Form Resizing with Tables

2004-02-11 Thread Ryan Andersen
nevermind... I found an answer Ryan Andersen [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] How do you resize a table when switching from 160 to 240? How do you add table rows, when you create a table in Constructor with a fixed number of rows? Palm's example doe snot include how

T3 Form Resizing with Tables

2004-02-10 Thread Ryan Andersen
How do you resize a table when switching from 160 to 240? How do you add table rows, when you create a table in Constructor with a fixed number of rows? Palm's example doe snot include how to handle this situation? Thanks -- For information on using the Palm Developer Forums, or to

Re: Expanded Mode Tables and WinDrawChars

2003-12-21 Thread Andrés Ramírez
Actually Ben, i used your white paper Supporting Expanded Mode on Palm OS, i checked it again, there is an example that use '__GenerateThunk' for a callback sorting function. After that i checked 'CWCallbackThunks.h' and i found there 2 fuctions, _CW_GenerateCallbackThunk, _CW_GenerateEventThunk

Re: Expanded Mode Tables and WinDrawChars

2003-12-20 Thread Ben Combee
At 07:24 AM 12/19/2003, Andrés Ramírez wrote: This is my routine static void vwClientesDraw(MemHandle recHandle, RectanglePtr bounds,UInt16 puinRowSel,UInt16 puinRecIdSel) { According to your suggestion I hardcoded a string inside the routine 1. the string hi is being painted 2. but the content

Re: Expanded Mode Tables and WinDrawChars

2003-12-19 Thread Andrés Ramírez
This is my routine static void vwClientesDraw(MemHandle recHandle, RectanglePtr bounds,UInt16 puinRowSel,UInt16 puinRecIdSel) { dCliente oClie; Char strText[48]=; Char strText1[48]=; MemHandle hanRecord; UnpackCliente(oClie, MemHandleLock(recHandle));MemHandleUnlock(recHandle);

Re: Expanded Mode Tables and WinDrawChars

2003-12-18 Thread Andres
Ben, i updated Cw to 9.2 the problem persist, when i am drawing a table the call to WinDrawChars(Multisegmented App), does not paint anything, by now that's the only problem. Besides that, i tried creating a new project with the wizard (Expanded Mode), and adding my files there, the same

Re: Expanded Mode Tables and WinDrawChars

2003-12-18 Thread Ben Combee
At 01:36 AM 12/18/2003, Andres wrote: Ben, i updated Cw to 9.2 the problem persist, when i am drawing a table the call to WinDrawChars(Multisegmented App), does not paint anything, by now that's the only problem. Have you debugged to that line of code and actually looked at what was being

Expanded Mode Tables and WinDrawChars

2003-12-15 Thread Andres Ramirez
Hi Friends Is there any know issue with Codewarrior 9.0 without updates, Expanded Mode and WinDrawChars? until here I have noticed that compared with Cw 8.3 Metrowerks has fix some bugs with the Expanded Mode Thunks, especially when calling another callbacks besides FrmSetEventHandler i meant

Re: Expanded Mode Tables and WinDrawChars

2003-12-15 Thread Ben Combee
At 02:31 AM 12/15/2003, Andres Ramirez wrote: Hi Friends Is there any know issue with Codewarrior 9.0 without updates, Expanded Mode and WinDrawChars? Expanded mode is very broken in V9. You need to update to V9.2 to use it successfully. -- Ben Combee [EMAIL PROTECTED] CodeWarrior for Palm

Re: Tables lines separators

2003-10-30 Thread Dave Lasker
, we rewrote the code using Tables. Is there a way to get rid of the dotted lines between text lines ? Thanks -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Tables lines separators

2003-10-30 Thread Axel Bernard
in List management, we rewrote the code using Tables. Is there a way to get rid of the dotted lines between text lines ? Thanks Thanks Dave. Actually in the meantime, I used customTableItem in order to draw inverted chars at some rows. The dotted lines disappeared... I thought it was due

Tables lines separators

2003-10-29 Thread Axel Bernard
Due to the bug in List management, we rewrote the code using Tables. Is there a way to get rid of the dotted lines between text lines ? Thanks -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Problem with tables

2003-09-09 Thread rguevara
Hi, i have a problem with tables: i copy the example code of PALMOS Bible book, about tables (chapter 11), in my program, but don't work with the textTableItem, but the others field work right! ¿? -- Open WebMail Project (http://openwebmail.org) -- For information on using the Palm Developer

bitmaps in tables

2003-08-24 Thread Toshiro
Is it possible to include bitmaps in tables? I want to create a 2 column table, 1 with a bitmap and 1 with a text field. ADSL para estar en internet las 24 horas a máxima velocidad y sin ocupar el teléfono. --- http

  1   2   3   4   >