Hi,

I have some open bugs with the OS/2 implementation of the general
OpenOffice open (save) dialog.
I can get it to crash when I type keys, and also it doens't handle
multiple drives.

I think it depends on some partial implementations of SAL file
handling, so I tried to write a small program to start it; I did this
because starting OOo every time under the debugger takes ages...

So I implemented the following code 


IMPL_LINK( MyWin, Test, PushButton*, pBtn )
{
        if ( pBtn == &aOKBtn )
        {
                SvtFileDialog* pDlg = new SvtFileDialog(
this,SFXWB_PATHDIALOG);
                pDlg->Execute();
                delete pDlg;
        }

        return 0;
}


but this is not enough, it seems that some more factories are required
to get the dialog to show.

I looked at win32 test programs, but they seems quite complex, I need
something like them but for the OOo dialogs.

Could you help me?

TIA,


Bye,

        Yuri Dario

/*
 * member of TeamOS/2 - Italy
 * http://www.os2power.com/yuri
 * http://www.teamos2.it
 */

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to