On Mon, Mar 24, 2008 at 10:03 AM, Graham Stoney <[EMAIL PROTECTED]> wrote: > I've finally managed to get OOo 2.4.0-rc5 to build on Windows XP with the MS > VC++ 2005 Express Edition compiler, thanks to some help from Jeongkyu; but > when I run soffice.exe or soffice.bin.exe, I get a "Missing vcl resource" > error message, and the application aborts.
Hi Graham, I guess it is not a correct way to run & debug OpenOffice.org to execute solver/680/wntmsci11.pro/bin/soffice.exe directly. You have to install OpenOffice.org first using the installation set in instsetoo_native/wntmsci11.pro/OpenOffice/.... and make sure it runs fine. After that, to debug word processor, you have to build it as debug mode to use following command (from source dir) $ cd sw $ build debug=true When the build is finished, find files in sw/wntmsci11.pro/bin and copy them to program directory such as C:\Program Files\OpenOffice.org 2.4\program\. Now, you're ready to debug Writer. You may start soffice.bin (at program directory) from Visual Stuio or attach soffice.bin after running OpenOffice.org to enable debug mode. Once it is running as debug mode, open the source code you are interested in, put the break point at some lines, and enjoy debugging. :-) Best, Jeongkyu -- Jeongkyu Kim OpenOffice.org Korean community lead Community website http://openoffice.or.kr Personal blog http://openoffice.or.kr/gomme --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
