Link to home
Start Free TrialLog in
Avatar of Richard Quadling
Richard QuadlingFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Do I want TPageScroller or is something else required?

Hi.

The application is to use a touch screen display.

Several parts of the system require the user to type in things which are then used to match entries in a list.

The display shows 0-9 and A-Z in a QWERTY style layout.

There is also SPACE and DELETE.

This works fine for any list entry which only has these characters. The display also disables unrequired buttons.

e.g.

Say the list contains (this is an example list I am using and not the real data which comes from a DB) ...

abs
acos
acosh
addcslashes
addslashes
aggregate
aggregate_info

The code realises that from this short list, the first letter ('a') is the only choice, so it will "accept" that automatically.
Then, the letters 'b', 'c', 'd' and 'g' are next. These are enabled and the rest disabled.
As the user chooses a letter, by pressing the appropriate button, the list is reworked from the master list to provide a speed search mechanism. It deals with entries like "acos" and "acosh" properly. And the delete works too.

As the letters are chosen they are shown in an edit box. If there is only 1 choice then this is taken automatically.

But, some entries include other symbols, not all of which are known at design time (and they can add more).

e.g.
(
,
)
-
+
_

So.

What I want to do is have an scrollable area between the ZXCVBNM line and the SPACE button which contains the available symbols as they appear (the letters are enabled/disabled to avoid mistyping).

I thought that the TPageScroller with a series of buttons in it would work, but I cannot work out how to get it to function.

The buttons are all the same width.

Does anyone have any example code (dfm and pas please) that demonstrates the usage of this control?

OR

Is there an better/easier way of getting an unknown number of buttons into a left-right scrolling area that can be operated in a touch screen environment. Ideally, buttons to scroll left and right would be the thing.

I know I could physically build this by having a TScrollBox, but this ends up a LOT more work when I think all I need is a working example of the TPageScroller.

I know with the TPageScroller I am going to be creating the buttons are runtime,

Regards,

Richard Quadling.
Avatar of odissey1
odissey1

Hi,
did you tried a ScrollBox?
odissey1
ASKER CERTIFIED SOLUTION
Avatar of Russell Libby
Russell Libby
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Richard Quadling

ASKER

WOW. Mr Smarty Pants wins.

Nearly.

Having got it working, it looks quite ugly.

Is there a way to preserve locations for the arrows and a some way to either control the stepping to be the width of a button or slow down the scroll speed.



Aha!

On the OnScroll event, there is a var Delta. This controls the amount of change!
So. Having done all of that, I don't really like the control now.

I've done it with the TScrollBox without the hscrollbar and have 2 additional buttons (btn_Left, btn_Right).

Very useful code all the same though (Saved me having to work out adding buttons on the fly!)

Thanks.

Richard.

I know what you mean about the control....
The pager control  really never took off big, one of the common controls that you don't see used very often at all. Glad the other piece of code was a help though

Regards,
Russell
Hi RQuadling,

you could save some time if followed my advice from the beginning. :)
I didn't want to use that component as I have to do the scrolling manually.

And my question was about the TPageScroller.

Richard.
As requested:
'Q.: '-Is there an better/easier way of... '
'A.: '-did you tried a ScrollBox?'
finally:
'-I've done it with the TScrollBox... ' !!!

unfare, but... whatever