I have created a NSF using Microsoft office libarary template. And I create one MS word document on that NSF. In Document property->Fields, there are huge numbers of $File fields and $OLEOBJINFO, $OLEObjField etc. What is the relation between these fields?Can I use these fields to generate OleObject in C programming. HOw?
Subject: $File fields and $OLEOBJINFO, $OLEObjField etc.
Those fields roughly correspond to the parts of the native file structure for Office files, along with information about which application to use. A Word file (other than HTML or the new XML formats) is actually a whole collection of mini-files – alpha data, style settings, font tables, field definitions, header and footer definitions, et cetera, et cetera, et cetera. When you embed an OLE object, they are stored separately instead of in a single file.
I don’t understand the second part of your question at all.
Subject: RE: $File fields and $OLEOBJINFO, $OLEObjField etc.
I mean to make complete ole object using these fields in C
Subject: RE: $File fields and $OLEOBJINFO, $OLEObjField etc.
… and you have still said nothing. What are you trying to do? Is there a particular reason why you can’t use the standard API means of getting to the OLE object?
Subject: RE: $File fields and $OLEOBJINFO, $OLEObjField etc.
If it is possible to get Full OleObject using C API please tell me the function…?Thank you in advance