To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=79169
------- Additional comments from [EMAIL PROTECTED] Thu Jul 5 12:45:06 +0000 2007 ------- The theory looks good, I guess you'll have to debug a sample property like bold or something simple and break on Read_BoldUsw when pAktItemSet is true to see if it's getting parsed at all. Things are sort of designed (I use that word loosely) for streaming through a document in order of ascending logical character position, not generally for jumping around the place in logical character position space, because it's really hard to do "complex format" word document parsing. So the typical model of use is to go through the document in order of the text and push data on event start and pop it and use it on event end. So it *might* be that you need to save the stage of "pPlcxMan" and seek it back to the starting cp, do your work and restore it. So maybe something like this might be needed... WW8PLCFxSaveAll aSave; pPlcxMan->SaveAllPLCFx( aSave ); pPlcxMan->SeekAll(nCpStart); ... pPlcxMan->RestoreAllPLCFx( aSave ); or alternatively, a new pPlcxMan constructed to start at nCpStart. Hope that helps. --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
