Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default Scrolling a Text in Worksheet

Dear All,
I am willing to scroll a text ," THIS PROGRAM IS REVISED" in the worksheet
(exactly at the top) all the time while opening the file.
I am not willing to design Form. It should come in the sheet itself with
out using Control Toolbox.
Is it possible to do it with the aid of VB Macro? Please help
Regards,
Premaanand Sethuraman
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default Scrolling a Text in Worksheet

Hi Premanand,

If your intention is to draw the revision to the attention of the user, why
not the simple:

'=============
Private Sub Workbook_Open()
MsgBox Prompt:=" THIS PROGRAM IS REVISED", _
Buttons:=vbCritical, _
Title:="Important Message"
End Sub
'<<=============

This is workbook event code and should be pasted into the workbook's
ThisWorkbook module *not* a standard module or a sheet module:

Right-click the Excel icon on the worksheet
(or the icon to the left of the File menu if your workbook is maximised)
Select 'View Code' from the menu and paste the code.
Alt-F11 to return to Excel.


---
Regards,
Norman


"Premanand" wrote in message
...
Dear All,
I am willing to scroll a text ," THIS PROGRAM IS REVISED" in the worksheet
(exactly at the top) all the time while opening the file.
I am not willing to design Form. It should come in the sheet itself with
out using Control Toolbox.
Is it possible to do it with the aid of VB Macro? Please help
Regards,
Premaanand Sethuraman



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I stop a worksheet from scrolling? rcomer123 Excel Worksheet Functions 4 April 18th 08 02:22 AM
Worksheet Scrolling Jason Zischke Excel Programming 6 February 15th 06 04:56 AM
Scrolling worksheet rahul25 Excel Programming 3 November 19th 05 03:50 PM
Scrolling the Worksheet with the scrollbar Fred Holmes Excel Discussion (Misc queries) 3 August 16th 05 10:32 PM
enable a scrolling cell with lengthy text within a worksheet? paypalian Excel Discussion (Misc queries) 0 March 11th 05 06:49 PM


All times are GMT +1. The time now is 11:36 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"