Hi all,
I really do not see the scenario:
- if the extension is installed in shared mode, you have to be admin to
remove the extension
- if the extension is installed in the user layer and you'd need a
password do disable or remove it, you could always just remove the
complete user
Hello Fabio,
well, the problem you describe happens at project creation, long before
you are able to debug. I am puzzled by this. In your first post, AFAIR
you got past the compilation state. Did you change anything?
Regards, Steffen
Fabio A. Miranda wrote:
Hello OO Developers:
Regarding
,
fabio.
--
Steffen Grund steffen.gr...@sun.com Sun Microsystems
Software Engineer - StarOffice Nagelsweg 55
Phone: +49 40 23646 647D-20097 Hamburg
Fax:+49 40 23646 550 http://www.sun.com/staroffice
Hello,
see my 2 cents below.
Stephan Bergmann wrote:
Hi all,
I just embarked on a new project, namely to clean up and consolidate the
various test frameworks and corresponding tests available in the OOo
build environment. These include at least:
- C++ unit tests, based on CppUnit and/or
The current issue of German computer journal ct has web rip-offs as a
main theme.
Only in German:
http://www.heise.de/ct/inhalt/2009/11/6
In the editorial, as an example for a search string that leads to such
web pages, openoffice is mentioned.
Malte Timmermann wrote:
Unfortunately this
Hello,
I do not recognize the exception you get. Are you sure that all the
additional jars/libraries you need for accessing the web service are
also packed with the Add-On project. What you should try out is to add
these jars/libraries also to the Add-On extension.
But I'm really just
Hi Terrence,
when you check out the sources and build the project, you're at your own
risk - this is work in progress and you cannot be sure that you get a
version that works at all. To be on the safe side, look for the tagged
version 1.1.3.
But you do not have to build it yourself at all,
Hi Agnisys,
the Saxon.jar must be present in your extension - best way to add it
during creation of the extension with a zip command. Additionally, the
Class-Path: entry in the manifest file of your .jar must reference the
saxon9.jar file.
Do you use NetBeans to create the extension?
Hope
Hi there,
still, the best way is to submit an issue with your document. Just
attach some code snippets of what your extensions does to make the bug
easier to reproduce.
You can send the bug to me if you like.
Regards, Steffen
Dinesh Chothe wrote:
Thanks for reply.
Without loading
Hello all,
I just created a wiki page for NetBeans users to publish some tips and
tricks around programming in Java for OpenOffice.org. Here it is:
http://wiki.services.openoffice.org/wiki/NetBeans_Tips_and_Tricks
Not much content right now, but there is a useful tip around avoiding to
type
Hi Craig,
try checking out the latest changes I made this morning. You have a
chance to compile the plug-in with the following line added to
nbproject/private/private.properties:
jhall.jar=netbeans_installation_directory/harness/jsearch-2.0_04.jar
I just presume, that the jsearch.jar
Hi again,
ok, here it is, a Addons.xcu file for a menu structure with two commands
in a sub menu. I used NetBeans and the mentioned plugin to create this -
took about 2 minutes. I added a separator between the commands as a
benefit ;-).
Regards, Steffen
?xml version='1.0' encoding='UTF-8'?
Hi Oliver,
I suggest you have a look at the NetBeans API Plugin for OpenOffice.org.
See
http://wiki.services.openoffice.org/wiki/OpenOffice_NetBeans_Integration
Look at the AddOn project wizard for OpenOffice.org inside of the
plugin. There you can create menu structures with commands,
Hi Mark.
Hi Steffen, it's not opensource yet but I hope to release it soon (once
it's done and debugged, of course). Shall I send it to you directly?
Yes, please.
Regards, Steffen
-
To unsubscribe, e-mail: [EMAIL
Hi Mark,
no idea at first glance. Can you provide us with your add-in, provided
it is open source?
Regards, Steffen
Mark Greenbank wrote:
Hi,
I've built an addin using the Netbeans plugin and when I deploy the addin
(either from Netbeans or from the command line) I get the following error:
Hi,
well, what Java version do you use and do you get some kind of error
message you can post?
-Steffen
mellannie rachelle reyes wrote:
Good day sir/mam
I just want to know what are the possible reasons that unexpected error
will occur and OpenOffice will crash.
I am trying to integrate
Hi.
Do the following in your class:
public final class Thesis extends WeakBase
implements com.sun.star.lang.XServiceInfo,
com.sun.star.frame.XDispatchProvider,
com.sun.star.lang.XInitialization,
com.sun.star.frame.XDispatch,
Hi.
As a quick example, put the following code in place of the your code
here comment in the dispatch(...) method (not inside
addStatusListener or removeStatusListener):
try {
XMultiComponentFactory xMCF = m_xContext.getServiceManager();
// get the desktop object
Object oDesktop
Hi.
Please post to the newsgroup, not to the members personally.
Forwarded to [EMAIL PROTECTED]
As a reply: You seem to confuse the Add-In (which is indeed only for
Calc) with the Add-On which can be used in several contexts (including
Writer). I can only again point to the Developer's Guide.
Hi.
If you are using NetBeans as platform (or would like to do so) I'd like
to point you to the NetBeans Integration project which extends NetBeans
to create AddOns for OpenOffice.org with a step-by-step wizard,
including menu entries.
(You can get NetBeans at:
http://www.netbeans.org
and
Hi,
this is quite simple, just set the property HyperLinkURL additionally:
xTextRanget.setString(test);
XPropertySet xProp =
(XPropertySet)UnoRuntime.queryInterface(XPropertySet.class, xTextRanget);
xProp.setPropertyValue(HyperLinkURL, http://www.gmail.com;);
See also
Try
unopkg add --shared /your/package
to install for all users. See documentation on unopkg for details.
Regards, Steffen
Tobias Krais wrote:
Hi together,
if I want to add a UNO Package I use the command:
unopkg add /tmp/myPackage.uno.pkg
But now only one user can use the package. How can
Hi.
I am not sure what you mean with field, but I assume you mean a
TextField. There are two possibilities:
first, you can insert the graphic with the XText obtained from the
TextField, but this only means that the anchor of the graphic is in that
field; the positioning of the graphic is
Ooops, I just saw that I wrote TextField istead of TextFrame... sorry.
Steffen
PS: the corrected text:
Hi.
I am not sure what you mean with field, but I assume you mean a
TextFrame. There are two possibilities:
first, you can insert the graphic with the XText obtained from the
TextFrame,
Hi again,
I took your code and just added some lines. Here you are:
XInterface xTextFrameInterface = (XInterface)
mxDocFactory.createInstance(com.sun.star.text.TextFrame);
XTextContent xFrameContent = (XTextContent)
UnoRuntime.queryInterface(XTextContent.class,
Hi Kent,
the text frame is only really valid after you've inserted it in the
document.
See
http://api.openoffice.org/docs/common/ref/com/sun/star/text/TextFrame.html
for a Basic example on how to insert the frame. If you need one in Java,
let me know.
Regards, Steffen
Kent Gibson wrote:
Hi again,
I could reproduce your problem: the culprit seems to be the -agentlib
parameter in your java-settings. Removing this entry worked for me.
Regards, Steffen
Oliver Brinzing wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi,
I tried to install a java component with OO
27 matches
Mail list logo