Excel cursor

  • Thread starter Thread starter Ulf Liljensten
  • Start date Start date
U

Ulf Liljensten

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
 
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


message
news:[email protected]...
 
Back
Top