On 09/09/2010 13:40, Knut Olav Bøhmer wrote: > Hi, > > I have problems with opening documents in openoffice.org from Microsoft > Internet Explorer. > I have opened WinDbg and attatched it to soffice.bin > Which files should I build with debug=true I have buildt sfxmi.dll with > debug=true, and thought maybe that some functions in appopen.cxx was one of > the first to be called.
hi Knut, it would be helpful to know what file format you're trying to import; below there is a stack frame from the writer (sw / SwView), so that narrows it down a bit. you'll definitely need the writer then (sw). the sfx modules contains generic framework code that handles the low-level IO stuff (but you said you already have sfx). ODF and OOo XML format (as well as anything that goes via XSLT) is imported by the xmloff module. DOCX is imported by the oox and writerfilter modules. DOC, RTF and HTML is handled by the writer itself (sw). that's all i can remember :) i'm most familiar with the xmloff import, and i can say from experience that it rather often just aborts the import when an exception is thrown. -- If God had meant for us to be naked, we would have been born that way. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
