Hello,
I'm trying to fill MS Word Formfields Checkbox and Textbox from php.
I tried with COM, but i get error.
I only can fill regular bookmarks.
Can anyone tell me what i'm doing wrong.
function AssinalaCheck( $Bookmark)
{
$this->handle->ActiveDocument->FormFields($Bookmark)->CheckBox->Value = 1;
}
function TextBox( $Bookmark, $Text)
{
$this->handle->FormFields($Bookmark)->Result = $Text;
}