Re: Display Large Text Messages on a Field

2005-08-31 Thread Jim McGowen
I have to do this in one of my apps. I store all the text in a database then load a chunk at a time, just enough to fill the display. Then when the user scrolls, I load the next chunk. Régis Daniel de Oliveira [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi all!!! There is

Re: Display Large Text Messages on a Field

2005-08-31 Thread Régis Daniel de Oliveira
Thanks Jim. Suppose that I have a database that I use to store this message. The database contains only the message field. So, actualy I'll load the record as show bellow: DmOpenRef DbPtr; MemHandle rh; Char *rp; //Open the Database ... //Load the Record rh = DmQueryRecord(DbPtr,0); rp =

Display Large Text Messages on a Field

2005-08-30 Thread Régis Daniel de Oliveira
Hi all!!! There is on my application a form that have a read only text field. This field is used to show a messages that is generated from server to the palm. There is a database that stores all these messages. Mostly times, this message have about 100 lines. So, what I do is create a Char