Michael,
This creates a readwrite column and a readonly column
Dave Crozier
oExcel=Createobject("Excel.Application")
With oExcel
.Visible=.T.
.Workbooks.Add()
oSheet=.ActiveSheet
With oSheet
.Range("A1:A2").Select
.Cells(1,1).Value="Readwrite"
.Range("A1:A2").Locked=.F.
.Range("B1:B2").Select
.Cells(1,2).Value="Readonly"
.Range("B1:B2").Locked=.T.
.Protect(,,.T.)
*
Endwith
*
Endwith
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of MB Software Solutions
Sent: 07 June 2007 13:57
To: Profox
Subject: [NF] Excel protection question
I created an Excel output from VFP using the COPY TO ... TYPE XL5
command. I'd like the user to be able to enter data in a single column
(let's say Column E) but have every other column protected so that the
user can't change that data, nor allow the user to add/remove rows.
Is this possible to achieve (and all programatically from VFP)?
--
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"
[excessive quoting removed by server]
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/[EMAIL PROTECTED]
** All postings, unless explicitly stated otherwise, are the opinions of the
author, and do not constitute legal or medical advice. This statement is added
to the messages for those lawyers who are too stupid to see the obvious.