Thread: Excel cursor
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default Excel cursor

One not very satisfactory way would be to include the following
code in the sheet's code module:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
SendKeys "{F2}"
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Ulf Liljensten" wrote in
message
hlink.net...
Does anybody know how/if the standard black rectangular cursor

in Excel
can be changed, so that you get a blinking input cursor when

you select
a cell instead?

My goal is to create an application with more of a "form" look

and feel
rather than a spreadsheet look and feel.

thanks,

Ulf