Scrolling (marquee) Tect

C

Commish

I have a form in Access 2007 - and along the bottom, I want to add
scrolling text - like a News Ticker.

I don't need to display hard coded, static text, I want to use the
results of a query - a query that chooses the 10 highest (most recent)
values. I can create the query easily, and display it in a datasheet.

But is there an easy way to have this scrolling along the bottom of an
existing form?
 
A

Arvin Meyer [MVP]


That's a good start - I can see that there's an Event Procedure
associated with the On Timer event. Looking at the code, you've got it
set to text. If I replace the text with [query].[field] - will this
cycle through the records in the query?

=================
No. You need to build a loop to cycle through the records and concatenate
them into a long string. Then use that string in the code.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top