Re: [NF] Excel protection question

2007-06-07 Thread Ted Roche
On 6/7/07, MB Software Solutions [EMAIL PROTECTED] wrote: Is this possible to achieve (and all programatically from VFP)? Yup. Got a copy of Office Automation from Hentzenwerke? pp 203-204. Don't have it? You can download the PDF in seconds -- order from www.hentzenwerke.com -- Ted Roche Ted

Re: [NF] Excel protection question

2007-06-07 Thread MB Software Solutions
Ted Roche wrote: On 6/7/07, MB Software Solutions [EMAIL PROTECTED] wrote: Is this possible to achieve (and all programatically from VFP)? Yup. Got a copy of Office Automation from Hentzenwerke? pp 203-204. Don't have it? You can download the PDF in seconds -- order from

RE: [NF] Excel protection question

2007-06-07 Thread Dave Crozier
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