Hi Drew, >>> Should the copy table wizard in this release also work with an old >>> fashioned DnD? Just tried it under XP and it fails to start.
Okay, got it. I was hit by an implementation detail of our UNO core. ( For techies: there are two components which implement the DataAccessDescriptor service, one being a dedicated implementation from Base, and one being Writer's mail merge service. When you do a createInstance( "css.sdb.DataAccessDescriptor" ), it is completely undefined which implementation you get. Unfortunately, the mail merge service does not offer all properties needed by the CopyTableWizard, which is perfectly legal. ) I'm off to implement a DataAccessDescriptorFactory :-\ 'Til then, you should do (in the snapshot) a createInstance( "com.sun.star.comp.dba.DataAccessDescriptor" ), which picks the proper implementation by its implementation name. Ciao Frank -- - Frank Schönheit, Software Engineer [EMAIL PROTECTED] - - Sun Microsystems http://www.sun.com/staroffice - - OpenOffice.org Base http://dba.openoffice.org - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
