Issue 670 - Transform excel
Summary: Transform excel
Status: CLOSED FIXED
Alias: None
Product: App Dev
Classification: Unclassified
Component: api (show other issues)
Version: 3.3.0 or older (OOo)
Hardware: PC Windows 2000
: P3 Trivial
Target Milestone: ---
Assignee: Mathias_Bauer
QA Contact: issues@api
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-04-10 11:10 UTC by issues@www
Modified: 2013-02-24 21:07 UTC (History)
1 user (show)

See Also:
Issue Type: FEATURE
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description issues@www 2001-04-10 11:10:18 UTC
XStorable not working accroding to faq example given

iam trying to load excel and convert to text
with XStorable interface 

iam using OpenOffice API's versin 6.19

Error : --> StarOffice Application  shows invalid parameter DialogBox,

i hope the parameters have changed can u please update me

The followind settings iam using

PropertyValue [] mypv = new PropertyValue[1];
   mypv[0] = new PropertyValue();
   mypv[0].Name = new String("FilterName");
   mypv[0].Value = new String("scalc: Text - txt");
   mypv[0].Handle = -1;
   mypv[0].State = PropertyState.DEFAULT_VALUE;
   aStore.storeAsURL(doc, mypv);  //aStore is a XStorable object, and doc is 
url string
Comment 1 ooo 2001-06-05 13:53:45 UTC
Dialogs should not appear in any case here.
Comment 2 Mathias_Bauer 2001-09-14 22:31:17 UTC
We have indeed the general problem that API calls sometimes are 
interrupted by dialogs. This results from the fact that in our old 
API it was possible to detect if it was done from an external script 
or program, so there was special code to suppress the dialog. This is 
not possible anymore. We had the choice to remove all dialogs and 
rewrite all higher level code for error handling or to keep the 
dialogs and live with overfluous dialogs when using API calls. We 
decided to use the latter alternative first, but it is planned to 
change this later. If the 641 build is ready, we will start this.
Comment 3 Unknown 2001-11-08 22:34:20 UTC
changing QA contact.
Comment 4 Mathias_Bauer 2002-11-19 15:42:24 UTC
Now no dialogs are shown anymore.
BTW: the script in this report is not correct, because the name of 
the filter should be "Text - txt - csv (StarCalc)".
Comment 5 Mathias_Bauer 2002-11-20 10:15:26 UTC
Sorry, I forgot to mention that "now" means: in the next 643 build.
Comment 6 Mathias_Bauer 2003-01-17 14:09:27 UTC
.