Re: [dev] Cursor dissappears in Calc when you double click a cell!

2005-05-03 Thread Niklas Nebel
xutuan Zhang wrote: I am using OOo 2.0 (1.9.79) on Windows XP SP2. I found in Calc, when you double click a cell, then the cursor and the active cell (black box around cell) disappeared. This is very inconvenient. The cell cursor (black box) is hidden on purpose. If the text cursor isn't

Re: [dev] UNO IDL and java.util.Date

2005-05-27 Thread Niklas Nebel
Ary Junior wrote: Hello, I have a Spreadsheet cell formated with the date type. I'm implementing a add-in function with Java and this function have an java.util.Date argument. Whitch UNO IDL type I can use to map this argument and send the data value of the cell to my function as a

Re: [dev] A few question about Add-in for Calc!

2005-06-17 Thread Niklas Nebel
xutuan Zhang wrote: I am writting some Add-in code for Calc to call my DLL/.so written in C..I have a few questions below: 1. For short type parameters in my C code, if I use short in IDL file, sal_Int16 in the cpp code, then the function will not be able to show in Calc's function list...i.e.,

Re: [dev] A few question about Add-in for Calc!

2005-06-20 Thread Niklas Nebel
xutuan Zhang wrote: I saw Any type works for optional parameters when the parameter is not an array...for array parameters, for example, * * * double myFunc( [in] Any p1, [in] Sequence Sequence Any p2 ) * * * p1 is shown as optional in Calc, but p2 is always shown as reqired.. Do you

Re: [dev] Changing cell values from custom sheet function

2005-07-26 Thread Niklas Nebel
Matthias Benkmann wrote: It seems that when I use a custom Basic function in a cell formula, during the executing of this function, I can't write to any cells. Statements such as ThisComponent.Sheets.getByIndex(0).getCellByPosition(4,1).setValue(33) are silently ignored. Why does this happen?

Re: [dev] Calc Function Wizard question

2005-08-23 Thread Niklas Nebel
Alan Yaniger wrote: When a function is selected in the initial screen of the Calc function wizard, three strings appear in the center of the window, next to the list box: 1) the name of the function 2) the name of the function with its argument types 3) a description of the function I want

Re: [dev] Multiselection copy

2005-09-27 Thread Niklas Nebel
Robert Merič wrote: I am interested how can I enable multiselection copying. Can you tell me how can I program this function (copy and paste) to copy multiselection. Wheh I am in Calc I want to sellect first and third row and then copy to another list. This function will be very useful for

Re: [dev] Multiselection copy

2005-09-28 Thread Niklas Nebel
Robert Merič wrote: OK I'll look for it tomorrow. And what must I do with this implementation. Where must I copy it that multiselection copying will work when some rows missed? Just copying a few lines won't suffice. Where cells are copied to the clipboard (ScViewFunc::CopyToClip or

Re: [dev] the lack of a really important fetaure in spreadshet

2005-09-28 Thread Niklas Nebel
Markus Ralser wrote: I am mailing becuase in my opinion a really important feature is lacking in openoffice calc. It is to add different error bars in a single chart. The only feature I could find was to add to every coloum the same error bar. However, if I have real statistical data, I have to

Re: [dev] font selection UI suggestions

2005-11-09 Thread Niklas Nebel
Malte Timmermann wrote: Just in case someone want to fix it, here some background: - FontSizeBox show fonts in Points - Writer remembers font size in Twips - Calc/Impress remember font sizes in 100th mm If only things were that simple. Calc cell attributes use twips internally, only formatted

Re: [dev] Java / Problem with search in Calc - Document

2005-11-11 Thread Niklas Nebel
Tobias Hildebrandt wrote: Hi, I have a problem with a search in a calc document. I have a document with various keywords, which are searched and saved in a XIndexAccess. Then I cast the XIndexAccess elements in XCell objects. This until now worked fine. But an error occurs, if two (or more?)

Re: [dev] Calc, VLOOKUP 1.1 - 2.0: Changing of default behaviour?

2005-11-14 Thread Niklas Nebel
Andrew Douglas Pitonyak wrote: When I created the document. I think that I noticed a behavior change NOT a specification change. In other words, I thought (correctly, or incorrectly) that it always assumed sorted, but the behavior changed when an unsorted list was incorrectly referenced as

Re: [dev] Creating a listener for Cell Data change in OpenOffice calc.

2006-04-18 Thread Niklas Nebel
Sathya C wrote: I am writing an add-in for OpenOffice Calc. I want my program to get notified when something is entered into a the spreadsheet cell or the data has been modified in the data cell. Can you please advice me which Listener I should be using. I tried using XEventListener and

Re: [dev] Finding out the cell address inside the addon

2006-04-18 Thread Niklas Nebel
Dinesh Varadharajan wrote: I forgot to mention i am writing java addon and inside it we wont be having any reference. And also there seems to be no way of doing any callbacks to the formula execution. The position of the cell that's being calculated isn't available to an add-in function,

Re: [dev] Creating a listener for Cell Data change in OpenOffice calc.

2006-04-19 Thread Niklas Nebel
Sathya C wrote: Is there a way to know which cell in the range was modified? If you add the listener to a cell range or sheet, no, and you'll also be notified only once if several cells are modified at the same time. If you want to observe individual cells (and there's not too many of

Re: [dev] XTableCharts.addNewByName()

2006-05-29 Thread Niklas Nebel
Tadashi Ohmura wrote: ::com::sun::start::table::XTableCharts class's addNewByName() method's parameter bColumnHeaders and bRowHeaders do not work. In the document: Parameter bColumnHeaders if set to true , the topmost row of the source data will be used to set labels for the category axis

Re: [dev] How to get row value in array formula

2006-05-30 Thread Niklas Nebel
mesa rit wrote: In Excel, when I used the array formula on a group of cells, I can use like {0;1;2;3;4} for the rowValue of the cell and {0,1,2,3,4} for the column value of the cell. What is the equivalent method in OpenOffice? Array constants will probably be supported sometime in the future

Re: [dev] Find a bug in Microsoft Excel

2006-05-30 Thread Niklas Nebel
刘俊峰 wrote: A date displays 2006-6-2, but becomes 2006-6-3 when read out according to file format. I find that Microsoft Excel counts the days of year 1900 as 366. Yes, that's known and documented in Microsoft's knowledge base. How to know whether the value of a RK cell is a date? From

Re: [dev] x86 osl/interlck.h performance

2006-05-30 Thread Niklas Nebel
Jens-Heiner Rechtien wrote: BTW column 1 and 2 are directly comparable to the columns below, a 23% improvement from m164 to m170, wow! A large part of that might be due to issue 64109, which was introduced in m162 and fixed in m167. Niklas

Re: [dev] Adding my own tags into ODF-Format

2006-06-29 Thread Niklas Nebel
Tom Schindl wrote: thanks for your reply I think the easiest soltion would use the attribute way described in the last mail I sent. Is it allowed to have custom attributes in ODF? Do you just want to load the file, ignoring the extra content, or do you need to preserve your markers? Foreign

Re: [dev] Adding my own tags into ODF-Format

2006-06-29 Thread Niklas Nebel
Yeatts, Garnett W. CONTR J9C329 wrote: Most of the foreign elements and markers are lost when the file is saved. I am also interested in adding some custom attributes or information to ODF files. Is there a recommended way of adding more information to an ODF document using the existing

Re: [dev] Adding my own tags into ODF-Format

2006-06-29 Thread Niklas Nebel
Tom Schindl wrote: From your mail i got the feeling that this is not possible at the moment in OpenOffice. Wouldn't it be a simple to restore this non-odf values e.g. as strings next to the object and insert them back when saving the object (I know this is not so easy but you may get my point

Re: [dev] Re: [documentation-dev] creating Excel files

2006-07-04 Thread Niklas Nebel
Dave Calkins wrote: I'd like to be able to export to an Excel file from my app which will be running in a shop floor environment on a machine which would not have MS Office or Open Office installed. Why don't you just install OOo and control it using the API? Would it be feasible to re-use

Re: [dev] Real-time data in OpenOffice Calc

2006-07-10 Thread Niklas Nebel
Vasko Tomanov wrote: Do anyone have any idea how to create a add In which put real-time financial data in OpenOffice Calc ? For example in Excel there is a RTDServer interface. Do OpenOffice Calc have something similar ? I will appreciate any idea how a real-time data add In can be

Re: [dev] ustring - global hash (?)

2006-08-28 Thread Niklas Nebel
Stephan Bergmann wrote: As discussed, the single global solution has some drawbacks compared to any local solutions (which can potentially get away with never removing from the cache, or not being thread-safe), so a list of places that already use or would most probably benefit from using this

Re: [dev] Calc, making print only current sheet installation default?

2006-09-22 Thread Niklas Nebel
Kirill S. Palagin wrote: What do you think of default Calc's behavior to print complete workbook instead of just current sheet? Printing all sheets seems counterintuitive and wasteful in the age of Reduce, Reuse, Recycle. There is very old issue

Re: [dev] Calc cell justification

2006-10-24 Thread Niklas Nebel
Alan Yaniger wrote: If I have a given ScBaseCell object, I want to set the justification based on its text. I know that I can get the text through GetStringData(). But how can I change the justification setting of that cell? The alignment attribute is part of the cell attributes that are

Re: [dev] Specification Process Possibilities ...

2006-10-31 Thread Niklas Nebel
Jim Watson wrote: http://www.openoffice.org/issues/show_bug.cgi?id=2977 In this case something different was specified and fixed, while the bug persists at http://www.openoffice.org/issues/show_bug.cgi?id=33851 Are you saying it's a bad thing that there is a specification that details what

Re: [dev] Specification Process Possibilities ...

2006-10-31 Thread Niklas Nebel
Kai Backman wrote: We all want to improve quality. The user is the one who judges quality. If users don't agree with each other, that doesn't help much. Unless you want to play ping pong and fix the behavior back and forth with each release. Niklas

Re: [dev] Specifications - summary suggestions ...

2006-11-06 Thread Niklas Nebel
Kohei Yoshida wrote: On 11/3/06, Mathias Bauer [EMAIL PROTECTED] wrote: Let's put it that way: it should be possible to integrate something even if the original goal laid out in the spec wasn't reached but the result is good enough. Good enough means that we could live with it even if nothing

Re: [dev] changing the OOo-Configuration via API has no effect during runtime

2006-11-06 Thread Niklas Nebel
Mathias Bauer wrote: Are you sure that it doesn't affect even new documents you create later? Then it would be a bug (Writer having a cached value that doesn't react on changes of the configuration) and you should create an issue. One may call it a bug, but it's not surprising. When the old

Re: [dev] Unicode---Give us all of it!

2006-11-10 Thread Niklas Nebel
Stephan Bergmann wrote: In a first step, I will try to identify and gather as many places in OOo that need to be adapted, but I need your help for that: IF YOU KNOW OF ANY PLACE IN OOo THAT NEEDS TO BE ADAPTED, PLEASE LET ME KNOW. Wouldn't that be more or less any occurence of sal_Unicode?

Re: [dev] Unicode---Give us all of it!

2006-11-10 Thread Niklas Nebel
Philipp Lohmann - Sun Germany wrote: Wouldn't that be more or less any occurence of sal_Unicode? There's hundreds of them in Calc alone. That depends probably on the details. If for example you are searching for ansi1252 code characters in a unicode string (e.g. '/' for URL or filename

Re: [dev] Unicode---Give us all of it!

2006-11-13 Thread Niklas Nebel
Stephan Bergmann wrote: I doubt that it is that many places that need to be changed. (For example, what do you think needs to be done for text import/export?) The obvious changes for text import: - Separator characters are user-supplied, so they can no longer be handled as a sal_Unicode. -

Re: [dev] Specs. closer to a solution

2006-11-15 Thread Niklas Nebel
Mathias Bauer wrote: Primarily interaction with User Experience, but also Documentation, l10n - I'd like to ensure not only that they have a clearly defined opportunity to comment / have their say; but that their window of opportunity here is time limited :-) 'discuss' with ... UserEx is

Re: [dev] Web CVS?

2006-12-11 Thread Niklas Nebel
Matthias B. wrote: Is it possible to access the OOo repository via Web? I'm sitting behind a firewall so I can't use CVS to access the repository. Use the Version control - CVS link on the project page (sw.openoffice.org). Niklas

Re: [dev] In the Works: New OOo C++ Coding Standards

2006-12-12 Thread Niklas Nebel
Kohei Yoshida wrote: The first thing that caught my eye is that, you guys are switching from using tab characters for indentation to using spaces. I'm actually fine one way or the other (though quite a number of developers I've worked with prefer using spaces for indentation), but I'm curious

Re: [dev] In the Works: New OOo C++ Coding Standards

2006-12-14 Thread Niklas Nebel
Thorsten Behrens wrote: You've hit the point exactly. There are some rules that require consistency and easy discernibility of local and member variables, and that's about all that needs to be said about that. Whether a member starts with m_ or with ma is largely irrelevant - as long as it is

Re: [dev] Calc C#CLI programming - Get the used range in a sheet - XUsedAreaCursor

2006-12-18 Thread Niklas Nebel
Paul Veuve wrote: But accessible methods for xUsedCursor in C# are only: xUsedCursor.Equals() xUsedCursor.GetHashCode() xUsedCursor.GetType() xUsedCursor.gotoStartOfUsedArea() xUsedCursor.gotoEndOfUsedArea() xUsedCursor.ToString() There is no

Re: [dev] Lock a document for concurrent access?

2007-01-09 Thread Niklas Nebel
Jan Holesovsky wrote: I'm not sure if concurrent access for documents is a good idea. Currently our merging is not perfect and you will have a lot of disappointed users. For me this is doing the second step before the first. Without a better merging we can't offer concurrency. I am a fan of

Re: [dev] sc project to fix flashing of cells

2007-02-05 Thread Niklas Nebel
Gregg Weber wrote: I would like to work on a change to the sc code. I have built the 2.0.4 source on my machine, and browsed the code for a month or so. The change my company wants me to make involves improving the drawing of the cells area of the sc window. Currently, it flashes, because the

Re: [dev] [Calc] Data pilot from OLAP data

2008-02-07 Thread Niklas Nebel
Andreas Saeger wrote: What are the preconditions to create a data pilot from OLAP data as suggested by the disabled third option in the first pilot dialog and in the online help: Help called from Select source dialog: External source/interface Opens the External Source dialog where you can

Re: [dev] List of 2730 uncallable methods in DEV300_m10

2008-05-09 Thread Niklas Nebel
Caolan McNamara wrote: On Fri, 2008-05-09 at 16:47 +0200, Eike Rathke wrote: while ScCompressedArray::GetPrevValue() is currently unused it is the counterpart of GetNextValue() and IMHO should be kept for completeness of implementation. Perhaps #ifdef FUTURE around it, or else I can add such

Re: [dev] CHINA001

2008-05-13 Thread Niklas Nebel
Kohei Yoshida wrote: I will then follow this convention and comment out all unused methods with //UNUSED2008-05. I put the date there so that we will know how long that code has been commented out (to perhaps help us remove it later on after a certain period of time). That sounds good.

Re: [dev] CHINA001

2008-05-13 Thread Niklas Nebel
Caolan McNamara wrote: Its connected to the binfilter stuff, comments in the non-binfilter code with CHINA001 should basically indicate that the code was removed from the non-binfilter code because it was believed only needed to support other-code that is now solely in the binfilter, i.e. the

Re: [dev] Unused file in sc

2008-10-20 Thread Niklas Nebel
On 10/20/08 09:11 AM, David Tardon wrote: Seems that sc/source/ui/app/template.cpp is an unused file--it's not built, it includes header which is not present anymore. Why it hasn't got deleted yet? Or did it reappeared during CVS-SVN conversion? Just small enough so it was never noticed. It

Re: [dev] Patch is waiting review for 6 motnh - Issue 35579 (Calc).

2009-02-09 Thread Niklas Nebel
On 02/07/09 19:22, Kirill Palagin wrote: Dear developers, please review and comment on latest patch in voted http://www.openoffice.org/issues/show_bug.cgi?id=35579. As you can see from the issue, this is not a patch that got no attention, but it went through several iterations of review and

Re: [dev] function formulas / source code

2009-02-09 Thread Niklas Nebel
On 02/08/09 07:46, Anibal Pacheco wrote: I'm looking since 2 days how to reach the formulas (or the source code) of the functions like PMT or any one in calc. I have to write them in javascript to translate an spreadsheet into HTML for a client that asked this to me. And I can't find such code

Re: [dev] Patch is waiting review for 6 motnh - Issue 35579 (Calc).

2009-02-09 Thread Niklas Nebel
On 02/09/09 21:16, Kirill Palagin wrote: Niklas Nebel пишет: As you can see from the issue, this is not a patch that got no attention, but it went through several iterations of review and changes already. There is of course a limit of how much effort we can put into a single issue

Re: [dev] Patch is waiting review for 6 motnh - Issue 35579 (Calc).

2009-02-12 Thread Niklas Nebel
On 02/10/09 20:17, Kirill Palagin wrote: Niklas Nebel пишет: That one should find its way into 3.2. Thanks. Maybe this one http://qa.openoffice.org/issues/show_bug.cgi?id=8302 too? Maoyg is working on issue 8302. I don't know if it will be finished in time for 3.2. Niklas

Re: [dev] Namespace prefix is relevant for validity...?

2009-03-04 Thread Niklas Nebel
On 03/04/09 18:21, Florent Georges wrote: I found something weird with OOo 3.0.1 (OOO300m15, build 9379.) I create a new, empty file with Writer. Then I edit the file META-INF/manifest.xml to change the prefix used from 'manifest' to 'mf'. And Writer does not want to open it anymore. It

Re: [dev] OOo BASIC Calc extension - sheet functions in library other than Standard - how ?

2009-03-17 Thread Niklas Nebel
On 03/17/09 14:08, Peter Eberlein wrote: Jan Holst Jensen schrieb: Peter Eberlein wrote: no, you cannot add functions to the Standard library using an extension. You'll have to develop an Add-in (in C++, Java or Python). if issue http://qa.openoffice.org/issues/show_bug.cgi?id=53615

Re: [dev] Get list of top votes on QA site?

2009-03-25 Thread Niklas Nebel
On 03/25/09 08:02, André Schnabel wrote: I am looking for a way to list the issues with the largest number of votes on the QA site (qa.openoffice.org). I tried going to: qa.openoffice.org - Miscellaneous link - Issue Votes link The list at this location (http://qa.openoffice.org/iz_votes.html)

Re: [dev] Get list of top votes on QA site?

2009-03-25 Thread Niklas Nebel
On 03/25/09 11:47, Niklas Nebel wrote: Oh, that's quite bad. Thanks for noticing it. As soon as Issue Tracker works again, I will submit an issue and try to get it into 3.1. http://qa.openoffice.org/issues/show_bug.cgi?id=100538 Niklas

Re: [dev] R1C1 deprecated?

2009-04-08 Thread Niklas Nebel
On 04/08/09 09:21 AM, Padmavyuha wrote: I'm wondering whether there has been a decision in OpenOffice v3.xx to remove support for the R1C1 formula schema in spreadsheets? Two observations that prompt this question: i) in v3.xx, the Format::Sheet::Use R1C1 option has been removed (I notice

Re: [dev] Build Comments

2009-07-22 Thread Niklas Nebel
On 07/22/09 09:00, Thorsten Behrens wrote: all distros I know of are using the non-gpc clipper since ages, I'm not aware of any regressions there. Also, if my memory does not fail me, Hamburg switched to non-gpc for 3.0, at least I don't find any traces of WITH_GPC in solenv anymore. No trace

Re: [dev] Issues with Insert and Delete in merged range

2009-07-24 Thread Niklas Nebel
On 07/24/09 10:43, Abhishek Sinha wrote: I cannot insert or delete column within a merged range. Please advice if there is a solution to this. This will be possible in version 3.2, see http://qa.openoffice.org/issues/show_bug.cgi?id=8302. If you don't want to wait, you could also try the

Re: [dev] What is a SLOT and What is a WHICH?

2009-08-05 Thread Niklas Nebel
On 08/05/09 05:28, Zhu Lihua wrote: I think: if nId 4999, it's a Slot. if nId = 4999 and nId !=0 , it's a Which. What are the terms slot and which mean? Which-IDs are used to store items in an ItemSet. For most efficient operation, they should be consecutive, so each module uses its own

Re: [dev] Promoting the ODF-Story (or how to break it)

2009-10-02 Thread Niklas Nebel
On 10/02/09 11:55, Andre Schnabel wrote: While doing translations for OOo 3.2 I just came across, that we introduced a ODF 1.2 *extended* file format in OOo. From a technical point of view I have some ideas, why this is usefull and needed. But from a users POV, this is rather puzzling. At the

Re: [dev] OpenOffice Calc in the Financial Markets.

2009-11-16 Thread Niklas Nebel
On 11/15/09 17:28, Cassio Neri wrote: What are the issues with OOo Calc and what could be done? Please, forgive me if I'm wrong, but I think: 1. Currently, there is no way to recalculate all changed formulas in current sheet. Although the documentation says that F9 does so, in fact, it doesn't.

Re: [dev] Selecting the contents of a spreadsheet cell

2009-12-03 Thread Niklas Nebel
On 12/02/09 18:53, true...@gmail.com wrote: When a part of the contents of a spreadsheet cell is selected with the cursor, is it possible to get just the selected part, and not the whole contents of the cell ? Not directly, but could try some tricks with the view's XTransferableSupplier

Re: [dev] Stay-put buttons

2010-01-06 Thread Niklas Nebel
On 01/06/10 12:52, R. Georgeson wrote: I looked at toolbars but a) when you generate the toolbar it just puts in as text whatever name you've given the relevant macro without AFAICS any control over colours or font size and I guess without the ability to indicate keyboard shortcuts. If I dock

Re: [dev] Formulas Calc

2010-01-20 Thread Niklas Nebel
On 01/20/10 00:40, Jorge Eduardo Jaime Castro wrote: I am trying to find out where is the code about duration.modif formula, If you can help me. I will thank you. If you mean DURACION.MODIF, Spanish for MDURATION, it's AnalysisAddIn::getMduration in scaddins/source/analysis/financial.cxx,

Re: [dev] help to Migrate Openoffice 3.1 calc to Vb6

2010-02-09 Thread Niklas Nebel
On 02/08/10 09:58, jeyaraj wrote: I am Jeyaraj.R From Maduarai which in tamilnadu(India) I am working in Tvs company we are planning to migrate MS-Office To Open Office. We have developed Our Software Using Vb/Sql Server we have genereated so many mis reports using

Re: [dev] Showing a dialog from My java OTX component

2010-02-26 Thread Niklas Nebel
On 02/26/10 16:13, Andrea Chiumenti wrote: Hello, after the dispatch operation I open a message dialog the informs the user that the operation has been successfully concluded. Something like JOptionPane.showMessageDialog(null, Transmission completed! , Info, JOptionPane.INFORMATION_MESSAGE);

Re: [dev] Calc for Life Science: Who are the masters of output2.cxx - and can those persons guide me a little ?

2010-03-09 Thread Niklas Nebel
On 03/09/10 14:14, Jan Holst Jensen wrote: I am dabbling with in-cell rendering of molecules and proteins in Calc. I have made a custom build of DEV300_M60 (I know - it's old now) where I have added code that to some extent can do the job. You can take a look at my progress so far at

Re: [dev] Re: mysterious headers */inc/segdefs.hxx

2010-03-10 Thread Niklas Nebel
On 03/10/10 19:39, David Tardon wrote: Ha, I wondered why these headers weren't present in the sw module too :) I'll create an issue and remove the remaining ones too, then. It's happening already: http://hg.services.openoffice.org/cws/dr73/rev/f0ff1950d291,

Re: [dev] Should assertions abort?

2010-03-19 Thread Niklas Nebel
On 03/18/10 19:16, Terrence Enger wrote: Long version: I just managed to provoke ... Error: Invalid MediaDescriptor detected: Found no URL. From File /home/terry/OOo_hacking/DEV300_m75/comphelper/source/misc/mediadescriptor.cxx at Line 586 Abort ?

Re: [dev] Exception on trying to set an rdf metadata in java

2010-03-24 Thread Niklas Nebel
On 03/24/10 13:23, Andrea Chiumenti wrote: Object xMetafield = xDocFactory.createInstance(com.sun.star.text.textfield.MetadataField); XText xMetafieldText = (XText)UnoRuntime.queryInterface(XText.class, xMetafield);

Re: [dev] java rdf problem again

2010-03-24 Thread Niklas Nebel
On 03/24/10 16:33, Andrea Chiumenti wrote: XURI nodeTableName = URI.create(m_xContext, gam3:tableName); The code generates this rdf file: ?xml version=1.0 encoding=utf-8? rdf:RDF xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#; rdf:Description

Re: [dev] 65,000 lines on calc

2010-03-25 Thread Niklas Nebel
On 03/24/10 22:30, Camillem wrote: If you mean the 65536 lines limit, I hasn't yet (at least not in Dev75) http://www.openoffice.org/issues/show_bug.cgi?id=30215 Interesting details on Kohei Yoshida's blog : http://kohei.us/2010/02/20/increasing-calcs-row-limit-to-1-million/ Right. Fixes

Re: [dev] java rdf problem again

2010-03-25 Thread Niklas Nebel
On 03/25/10 08:47, Andrea Chiumenti wrote: Sorry I'm a bit confused, and browsing the site and using google I'm not able to get a solution. I've also tried with XURI nodeTableName = URI.create(m_xContext, tableName); but I get this error: CURI::initialize: argument not splittable: no separator

[dev] Re: [sc-dev] Debug the Calc Source Code

2010-04-06 Thread Niklas Nebel
On 04/06/10 09:03, rashi dhing wrote: Hi ! Is there a good debugger which can be implemented on the source code of openoffice inorder to step into the lines and add break points at various locations of the code. I am using Cygwin on Windows to compile and build the code. Are gdb and C++ Builder

[dev] Re: [sc-dev] Debug the Calc Source Code

2010-04-12 Thread Niklas Nebel
On 04/11/10 15:37, rashi dhing wrote: I am getting the error The breakpoint will not currently be hit. No symbols have been loaded for this document after adding a breakpoint to a line in the source file. I have been doing the following: 1) Running Calc by clicking in scalc.exe from the

Re: [dev] Finding code for SvNumberFormatter

2010-04-12 Thread Niklas Nebel
On 04/12/10 19:04, Matt Needles wrote: Where in the CVS tree can I find the code for this class? I'd like to try to add some code, but I need to see the class to find out how to do it. You can use OpenGrok (http://svn.services.openoffice.org/opengrok/) to find class definitions.

Re: [dev] Re: Finding code for SvNumberFormatter

2010-04-19 Thread Niklas Nebel
On 04/17/10 17:36, Matt Needles wrote: Thanks, Niklas. I see from these sources where to add the new format code, but I can't find where the actual rendering of the formats is done. That is, where is the code that creates the output string in the specified format? Can you help please?

Re: [dev] OOo's Toolbar Icons - Saving Space

2010-04-24 Thread Niklas Nebel
Konstantin Tokarev schrieb: I also propose to remove star wars game from Calc to save space (or at least move it to separate package if there are lots of fans) As chance would have it, that one was dropped already with the modules reorganization in CWS svxsplit. But in terms of space, it was

Re: [dev] Help Download Source

2010-05-07 Thread Niklas Nebel
On 05/07/10 15:49, Romildo Ferreira wrote: I got the packages but i can't find the java implementation of the java inteface XGoalSeek (I believe that must be SpreadsheetDocument.java, or I'm wrong?) It's a UNO interface, with the implementation in C++, in file sc/source/ui/unoobj/docuno.cxx,

Re: [dev] question about sheet ?

2010-05-17 Thread Niklas Nebel
On 05/17/10 16:30, Qzi er wrote: I can't understand the code below , what's the deference between getByIndex( 0 ) and *getByName( OUString::createFromAscii(Sheet2)); *; Just what the names suggest: getByIndex(0) returns the first sheet, getByName looks for a sheet with a specific name.

Re: [dev] about the sPageNumber parameter

2010-06-21 Thread Niklas Nebel
On 06/21/10 10:41, wangxiang wrote: I'm trying to read the SW code and encounter some problem: like http://svn.services.openoffice.org/opengrok/xref/DEV300_m82/sw/source/ui/utlui/bookctrl.cxx#122 part of the code is here: http://ooo.pastebin.com/P5EswNu2 who can tell me how the paramter

Re: [dev] FASTBOOL macro vs bool - decrease memory usage

2010-06-24 Thread Niklas Nebel
On 06/24/10 12:29, Mathias Bauer wrote: The idea is so good that someone is already working on it. :-) There is ongoing work to replace a lot of ancient types like BOOL, USHORT etc. by sal_... types, with the exception that BOOL/FASTBOOl will be replaced by bool. BOOL - bool will cause

Re: [dev] FASTBOOL macro vs bool - decrease memory usage

2010-06-24 Thread Niklas Nebel
On 06/24/10 13:07, Bartosz wrote: BOOL - bool will cause problems. Memory usage for new BOOL[n], mixed use with sal_Bool (pointers, references), the occasional special value (SfxChildWinInfo::bVisible). Shouldn't we go the safe way and change BOOL to sal_Bool instead? I agree with you Niklas.

Re: [dev] FASTBOOL macro vs bool - decrease memory usage

2010-06-24 Thread Niklas Nebel
On 06/24/10 13:52, Stephan Bergmann wrote: Re memory usage: BOOL[n] and bool[n] would each be n bytes in size, or what am I missing? You're right, forget about that part. Re mixed use with sal_Bool: haven't encountered this problem often over the last years (and I liberally use bool instead

Re: [dev] Open Office - RTD Support

2010-06-29 Thread Niklas Nebel
Vaibhav Poonekar schrieb: I am working with a product based company. We have a product that uses MS-Excel with RTD functionality. Many of our customers are using Open-Office Calc due to its ease of use and stability. Our team has also found out that Open Office is quite easy and

Re: [dev] I have a blank Calc document that shows red text in 3.3

2010-08-24 Thread Niklas Nebel
On 08/23/10 23:44, James wrote: I deleted the text. The question is how did the image get there? Probably by pasting HTML from a web page. Niklas - To unsubscribe, e-mail: dev-unsubscr...@openoffice.org For additional

Re: [dev] Adding a Comment to a Cell

2010-09-27 Thread Niklas Nebel
On 09/27/10 11:13, Phil Hibbs wrote: Is there a way of adding a Comment to a cell in a macro? I tried recording it but it didn't work. See http://wiki.services.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Cell_Annotations. Niklas

Re: [dev] Linking info from spreadsheets with passwords

2010-09-27 Thread Niklas Nebel
On 09/24/10 16:28, Andy Thompson wrote: we have 12 individual spreadsheets that are submitted by individuals with our organization ... these spreadsheets are password protected to open. at corporate office we have an additonal spreadsheet that extracts (via links) info from those 12 individual

Re: [dev] Improve MS Office Calc compatibility - easy2fix patch

2010-11-04 Thread Niklas Nebel
On 11/04/10 00:53, Bartosz wrote: MS Office Calc could handle sheets in a workbook limited by available memory: http://office.microsoft.com/en-us/excel-help/excel-specifications-and-limits-HP005199291.aspx OpenOffice could handle only 256 sheets. To improve compatibility I suggest to increase

Re: [dev] Crash on PDF export with m92

2010-11-19 Thread Niklas Nebel
On 11/19/10 13:10, Pavel Laštovička wrote: I am experiencing crashes or malloc memory corruption when I do export to PDF. The logs I am attaching were created in daemon mode with jodconverter library as a client. I tried to export the same .ods document to .xls without problem. What do you

Re: [dev] Code for Pictures

2010-12-01 Thread Niklas Nebel
On 12/01/10 11:35, Annika Westerlaken wrote: Currently I am working on a project which requires me to rewrite Writer documents without opening them. The next step is to insert a picture, still without opening the document. The problem is that when I use the original name of the picture, the

Re: [dev] Re: Code for Pictures

2010-12-01 Thread Niklas Nebel
On 12/01/10 14:01, Annika Westerlaken wrote: Thanks for your input. You're right about the entry being needed in manifest.xml, that was already taken care of however. I'm sorry for not being clear enough in my initial message. If I were to unzip an odt file containing a picture and rename this

Re: [dev] Performance: Loading a large plain data file takes very long - solution proposal

2010-12-06 Thread Niklas Nebel
On 12/04/10 15:24, Bartosz wrote: Loading a large plain data file takes very long. This problem was described at: http://wiki.services.openoffice.org/wiki/Calc/Performance/The_Ou_case Look at file: http://svn.services.openoffice.org/opengrok/xref/DEV300_m94/sc/source/filter/xml/xmlsubti.cxx

Re: [dev] AboutGRAPH.EXE

2010-12-10 Thread Niklas Nebel
On 12/10/10 04:32, 许山川 wrote: When I load the ppt document, because it is loaded by multi-threaded, the process list will produce GRAPH.EXE, who can tell me why? and how can I avoid it? Sounds like you're somehow activating an OLE object (chart) in the file. Niklas

Re: [dev] AboutGRAPH.EXE

2010-12-14 Thread Niklas Nebel
On 12/14/10 04:39, 许山川 wrote: I am sorry to reply late,you say activating an OLE object ,can you explain it in detail? thanks! the problem now is that when GRAPH.EXE appears,the speed of ppt_loading will slows down. To load and display a file with an OLE object, the OLE server application

Re: [dev] RDF metadata issue

2011-02-09 Thread Niklas Nebel
On 09.02.2011 15:50, underscore wrote: The problem is that the metadata looks like this : rdf:RDF xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#; rdf:Description rdf:about=../content.xml#id322214793 ns1:sectionType xmlns:ns1=http://editor.bungeni.org/anx/;Clause/ns1:sectionType

Re: [dev] OOo Pivoting Code Extraction

2011-02-16 Thread Niklas Nebel
On 16.02.2011 13:52, Nuno Oliveira wrote: My name is Nuno Oliveira, and me and my colleagues, we are enrolled in a project at University of Minho (Portugal), which consists in finding all the code related to the pivot tables (data pilot) operations in the calc tool. Then we want to extract and

Re: [dev] OOo Pivoting Code Extraction

2011-02-16 Thread Niklas Nebel
On 16.02.2011 15:57, Nuno Oliveira wrote: I have some other question: I'm using version 3.3.0 of OOo and there is also these two classes with name pivot.cxx and pivot2.cxx. Is that anyhow related with the pivoting code and those classes you mentioned? (these classes are inside binfilter package

[dev] Re: OOo Pivoting Code Extraction

2011-03-01 Thread Niklas Nebel
On 28.02.2011 23:23, Nuno Oliveira wrote: As I'm taking this project again, I bumped into some questions that you may answer me immediately, I'm sure! Well I'm trying to discover which and where is the function that performs the pivoting calculation. By the hints you gave me before I'm

[dev] Re: Importing Filter fixes from Symphony

2011-03-09 Thread Niklas Nebel
On 30.11.2010 16:44, MOULIN Camille wrote: During random tests with IBM's Symphony, I realized that three of the most annoying bugs in Calc's filters were actually fixed there. Issue 89232 Fill operations should not touch filtered rows. Issue 12666 autofilter works just on one sheet (only

[dev] Re: build.pl debug=1 for sw and svx

2011-04-06 Thread Niklas Nebel
On 06.04.2011 08:54, tora - Takamichi Akiyama wrote: Could you tell me how to easily do build.pl debug=1 or similar actions in a specific, renovated module such as sw and svx after fully building the entire source code tree with normal options? The way I used to do was like this: (full build)

  1   2   >