random text

M

Mauro

Hello everybody.
I have a worksheet in excel that with the code below shows a random text in
the lower bar. Is it possible to do the same in access?

Dim DelayBetweenText
Dim TextSample
Dim NumberOfTexts
Public TimeStart

Sub INI()
DelayBetweenText = 10 'seconds
NumberOfTexts = 50
ReDim TextSample(NumberOfTexts)

"here come all the 50 lines of text"


End Sub
 
Top