Try this:

 

Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)

Sub Start()

    Dim strText As String

    

    strText = Range("rngMyRange").Value

    strText = Trim(strText)

    strText = strText & WorksheetFunction.Rept(" ", 40)

    l = Len(strText)

    Do

        DoEvents

        Range("rngMyRange").Value = Right(strText, Len(strText) - 1) &
Left(strText, 1)

        strText = Right(strText, Len(strText) - 1) & Left(strText, 1)

        Sleep 100

    Loop While 1

End Sub

 

With use of DoEvents you can interact with Worksheet

 

 

From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com]
On Behalf Of xlstime
Sent: Jan/Sat/2012 08:47
To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ Running/Moving Statement

 

Hi Santosh,

yes it is possible, please find the attachment 

On Sat, Jan 14, 2012 at 4:56 PM, santosh subudhi
<santoshkumar.subu...@gmail.com> wrote:

Hi Group,

 

Is it possible to show  a statement moving from right to left in MS Excel
that we usually see in websites or in our system screen savers.

 

If yes please help me with this.


 

-- 
Regards
Santosh 
santoshkumar.subu...@gmail.com

-- 
FORUM RULES (986+ members already BANNED for violation)
 
1) Use concise, accurate thread titles. Poor thread titles, like Please
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will
not get quick attention or may not be answered.
 
2) Don't post a question in the thread of another member.
 
3) Don't post questions regarding breaking or bypassing any security
measure.
 
4) Acknowledge the responses you receive, good or bad.
 
5) Cross-promotion of, or links to, forums competitive to this forum in
signatures are prohibited. 
 
NOTE : Don't ever post personal or confidential data in a workbook. Forum
owners and members are not responsible for any loss.
 
----------------------------------------------------------------------------
--------------------------
To post to this group, send email to excel-macros@googlegroups.com




-- 
.........................

-- 
FORUM RULES (986+ members already BANNED for violation)
 
1) Use concise, accurate thread titles. Poor thread titles, like Please
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will
not get quick attention or may not be answered.
 
2) Don't post a question in the thread of another member.
 
3) Don't post questions regarding breaking or bypassing any security
measure.
 
4) Acknowledge the responses you receive, good or bad.
 
5) Cross-promotion of, or links to, forums competitive to this forum in
signatures are prohibited. 
 
NOTE : Don't ever post personal or confidential data in a workbook. Forum
owners and members are not responsible for any loss.
 
----------------------------------------------------------------------------
--------------------------
To post to this group, send email to excel-macros@googlegroups.com

-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

------------------------------------------------------------------------------------------------------
To post to this group, send email to excel-macros@googlegroups.com

Reply via email to