I have a vfp form with a browser activex control (which I've named ole1). I use the browser to display an html page which uses javascript to create a text editor object like this:
var oFCKeditor = new FCKeditor( 'FCKeditor1' )
And then (again in javascript) I can set up the text to be edited like this:
oFCKeditor.Value = "Some html <b>text</b> here"
Is there a way of accessing the oFCKeditor object from foxpro after the page has been displayed I've tried something like Thisform.ole1.document.oFCKeditor.value but that doesn't work.
Malcolm