Samphan Raruenrom wrote:
> I build OOo 680_m79 successfully. Writer run fine until I press arrow key.
> It'll die like this in MSVC++ debugger :-
>
> 'Unhandled exception at xxx in soffice.bin'
> 'exception: com::sun::star::uno::RuntimeException @ xxx'
Obviously a Runtime exception occured on executing the code called by
the keystroke. You are using MSVC++ debugger, so you can set a break
point on the following line in this function:
> xDispatch->dispatch(aURL, css::uno::Sequence<
> css::beans::PropertyValue >());
Before executing this call you can tell the debugger to stop when a C++
exception is thrown. When you get to a place where a RuntimeException is
thrown, you most probably have found the culprit. Sometimes Exceptions
occur and are caught in the code, so possibly you can continue execution
and see if the debugger stops again at another code area. If you reach
the following code in the funtion:
> catch(const css::uno::RuntimeException& exRuntime)
> { throw exRuntime; }
you definitely have found the culprit, it was the last place you visited.
Please report back and we'll see what's going wrong.
Best regards,
Mathias
--
Mathias Bauer - OpenOffice.org Application Framework Project Lead
Please reply to the list only, [EMAIL PROTECTED] is a spam sink.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]