Hi Ben! FYI POL performs page scrolling in grid controls accroding to vertical scrollbar page size.
So, you can control it by the following code: // Set number of rows in a grid. m_grid.SetRowCount(nRowCount); // Get default page size. Int16 nValue, nMin, nMax, nPageSize; m_grid.GetScrollBar(nValue, nMin, nMax, nPageSize); // Change default behavior. m_grid.GetScrollBar(nValue, nMin, nMax, nPageSize - 1); If you do not like this standard behavior, please make a more definite suggestion (i.e. redefine ScrollPage() function as virtual, or create a whole new virtual GetPageSize() function). Regards, POL Team technical leader. "Ben Combee" <[EMAIL PROTECTED]> wrote: > >> > the logo rather than the standard title bar in the main view -- >> > it still behaves like a title bar. >> >> There is room for one more day button to the right of the logo. > >I went with five buttons because there were ten days in the festival... >I could fit one more and have overlap. > >> > The initial pause on startup is due to expanding lots of >> > databases that we've stored as resources to make the application >> > completely beamable. We expand a total of six DBs, with three >> > of those being expanded twice to produce different sorts. >> >> Instead of the initial "please stand by", you could display some >actual >> welcome content for the user to read during the pause. > >The new version posted tonight tells the user what database is being >expanded, so it looks like more work is being done. > >> > Actual navigation is pretty good. My one problem here is scrolling >> >> Page-wise scrolling always jumps a full page, rather than leaving the >top or >> bottom line of the previous page visible on the new page. I'd prefer >the >> latter which helps the user stay oriented better. > >This is a limitation of POL -- I'll make a suggestion back to the >developers of being able to set the scroll size to allow the >"off-by-one" scrolling you suggest. > >> The PalmSource conference guide had a nice feature to export any >session to >> the built-in Date Book. That might be useful here. > >That will definitely be in 2.0. It was in the original specs for this, >but as a "would-be-nice" thing. If I added the DB record, I'd want to >also immediately do a "go-to" to address book to bring it up for >editing, so the user could set an alarm or make a note. > > > >-- >For information on using the Palm Developer Forums, or to unsubscribe, please see >http://www.palmos.com/dev/support/forums/ > -- -- __________________________________________________________________ Your favorite stores, helpful shopping tools and great gift ideas. Experience the convenience of buying online with Shop@Netscape! http://shopnow.netscape.com/ Get your own FREE, personal Netscape Mail account today at http://webmail.netscape.com/ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
