Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
MikeB
 
Posts: n/a
Default how do I make the cursor appear as a coloured outline box?

I have been sent a spreadsheet in which the cusor appears as a green outline
box around the cell. how is this done as i can't find any reference in Help
etc?
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default how do I make the cursor appear as a coloured outline box?

Mike

Perhaps some worksheet code like the following?

Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Static OldCell As Range
If Not OldCell Is Nothing Then
OldCell.Interior.ColorIndex = xlColorIndexNone
End If
Target.Interior.ColorIndex = 6
Set OldCell = Target
End Sub

Right-click on the sheet tab and "View Code". See if any code in that module.

OR could be some code in the ThisWorkbook Module.


Gord Dibben Excel MVP


On Wed, 16 Nov 2005 07:29:14 -0800, "MikeB"
wrote:

I have been sent a spreadsheet in which the cusor appears as a green outline
box around the cell. how is this done as i can't find any reference in Help
etc?


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 make a 3-dimensional plot in Excel? John W. Mordosky Charts and Charting in Excel 6 April 3rd 23 06:58 PM
How do I make each row add up seperatly? Please make it easy... Homeade baker and candy maker New Users to Excel 1 October 23rd 05 09:52 PM
how do I make make my hyperlinks show the email address they are . Dustin Excel Discussion (Misc queries) 0 January 13th 05 01:39 AM
make a cell empty based on condition mpierre Charts and Charting in Excel 2 December 29th 04 01:01 PM
How to make this plot? springwinterfall Charts and Charting in Excel 2 December 22nd 04 07:35 PM


All times are GMT +1. The time now is 08:08 AM.

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

About Us

"It's about Microsoft Excel"