[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-25 Thread tl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190


User tl changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Tue Mar 25 09:52:13 + 
2008 ---
closing.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-20 Thread hik4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Thu Mar 20 09:00:31 + 
2008 ---
lsm.getHyphenator().hyphenate in the code returns the same: null

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-20 Thread hik4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Thu Mar 20 09:00:59 + 
2008 ---
lsm.getHyphenator().hyphenate in your code returns the same: null

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-20 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Thu Mar 20 09:44:57 + 
2008 ---
@hik4:  What is your problem, exactly?  Initially you claimed that the
getHyphenator call failed across your Delphi bridge.  That has not been
observable in any other scenario (the call works in both OOoBasic and Java), so
it is probably a problem of that Delphi bridge.

However, tl showed in #desc7 that the call to hyphenate returns non-null if
nMaxLeading is 5, whereas #desc15, #desc19, #desc23, and #desc24 show that it
returns null if nMaxLeading is 0 (modifying #desc7 to use nMaxLeading=2 shows
that it returns null in that case, too).  Maybe that got you confused.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-20 Thread hik4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190


User hik4 changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |INVALID





--- Additional comments from [EMAIL PROTECTED] Thu Mar 20 10:33:38 + 
2008 ---
Sorry. It was my fault. The code does what it should in Java and Basic for
Windows Scripting Host with nMaxLeading2.

It seems just to be a Delphi bug.

Thank You very much for the help.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-19 Thread tl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190


User tl changed the following:

What|Old value |New value

Target milestone|---   |OOo 3.0





--- Additional comments from [EMAIL PROTECTED] Wed Mar 19 08:45:38 + 
2008 ---
Seems I have to check again with an API tester.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-19 Thread sb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190


User sb changed the following:

What|Old value |New value

  CC|'tl'  |'sb,tl'





--- Additional comments from [EMAIL PROTECTED] Wed Mar 19 09:45:57 + 
2008 ---
The Java UNO code in #desc19 is broken (direct Java casts are not OK, you need
to use UnoRuntime.queryInterface instead; see the DevGuide for details). 
Correct code would be something like the following (caveat: typed in without
actually testing it):

---8---
public static void main(String[] args) throws com.sun.star.uno.Exception {
com.sun.star.uno.XComponentContext xContext = Bootstrap.bootstrap();
com.sun.star.lang.XMultiComponentFactory sm = xContext.getServiceManager();
com.sun.star.linguistic2.XLinguServiceManager lsm =
(com.sun.star.linguistic2.XLinguServiceManager)
com.sun.star.uno.UnoRuntime.queryInterface(
com.sun.star.linguistic2.XLinguServiceManager.class,
sm.createInstanceWithContext(
com.sun.star.linguistic2.LinguServiceManager, 
xContext));
XHyphenatedWord hw = lsm.getHyphenator().hyphenate(
Silbentrennung, new Locale(de, DE, ), (short) 0,
new PropertyValue[0]);
System.out.println(hw.getHyphenatedWord());
}
---8---

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-18 Thread jsc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190


User jsc changed the following:

What|Old value |New value

 Assigned to|jsc   |tl





--- Additional comments from [EMAIL PROTECTED] Tue Mar 18 14:05:24 + 
2008 ---
it's for you

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-18 Thread hik4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Tue Mar 18 15:59:37 + 
2008 ---
It doesn't work with Java either:

/*
 * OfficeUNOClientApp.java
 *
 * Created on 2008.02.18 - 16:38:53
 *
 */

package com.example;

import com.sun.star.beans.PropertyValue;
import com.sun.star.uno.XComponentContext;
import com.sun.star.comp.helper.Bootstrap;
import com.sun.star.lang.Locale;
import com.sun.star.lang.XMultiComponentFactory;
import com.sun.star.linguistic2.XHyphenatedWord;
import com.sun.star.linguistic2.XLinguServiceManager;
import com.sun.star.uno.IQueryInterface;
import com.sun.star.uno.Type;

/**
 *
 * @author Lebedkov
 */
public class OfficeUNOClientApp {

/** Creates a new instance of OfficeUNOClientApp */
public OfficeUNOClientApp() {
}

/**
 * @param args the command line arguments
 */
public static void main(String[] args) {
try {
// get the remote office component context
XComponentContext xContext = Bootstrap.bootstrap();
String[] names = xContext.getServiceManager().
getAvailableServiceNames();
for (String n: names)
System.out.println(n);
XMultiComponentFactory sm = xContext.getServiceManager();
IQueryInterface iqi = (IQueryInterface) 
sm.createInstanceWithContext(
com.sun.star.linguistic2.LinguServiceManager, 
xContext);
Class c = iqi.getClass();
System.out.println(c.getName());
for (Class intf: c.getInterfaces())
System.out.println(impl intf:  + intf);


Object obj = iqi.queryInterface(new Type(
com.sun.star.linguistic2.XLinguServiceManager));
XLinguServiceManager lsm = (XLinguServiceManager) obj;
Locale loc = new Locale(de, DE, );
XHyphenatedWord hw = lsm.getHyphenator().
hyphenate(Silbentrennung, loc, (short)0, 
new PropertyValue[0]);
System.out.println(hw.getHyphenatedWord());
}
catch (java.lang.Exception e){
e.printStackTrace();
}
finally {
System.exit( 0 );
}
}

}


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-18 Thread hik4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Tue Mar 18 16:00:14 + 
2008 ---
Here is the output of the Java program:

init:
deps-jar:
Compiling 1 source file to 
C:\docs\Projekte\Test\OfficeUNOClientApp\build\classes
compile:
run:
stardiv.vcl.MenuBar
com.sun.star.sdb.ReportDesign
com.sun.star.comp.Chart.XMLStylesExporter
stardiv.one.form.control.TextField
com.sun.star.configuration.ConfigurationRegistry
com.sun.star.frame.Controller
com.sun.star.text.TextDocument
com.sun.star.chart2.ColumnChartType
com.sun.star.util.JobManager
com.sun.star.sdb.TableDefinition
com.sun.star.awt.UnoControlButton
com.sun.star.uri.UriSchemeParser_vndDOTsunDOTstarDOTexpand
com.sun.star.comp.Draw.XMLOasisImporter
com.sun.star.awt.UnoControlEdit
com.sun.star.i18n.Calendar_buddhist
com.sun.star.configuration.backend.LocalHierarchyBrowser
com.sun.star.awt.UnoControlRadioButtonModel
com.sun.star.wizards.letter.CallWizard
stardiv.vcl.controlmodel.FixedLine
com.sun.star.chart2.ChartDocument
com.sun.star.bridge.oleautomation.Factory
com.sun.star.logging.PlainTextFormatter
com.sun.star.embed.EmbeddedObjectCreator
com.sun.star.form.component.TimeField
com.sun.star.form.component.DateField
com.sun.star.comp.embed.OLEEmbeddedObjectFactory
com.sun.star.comp.embed.OOoEmbeddedObjectFactory
com.sun.star.form.control.NumericField
com.sun.star.form.control.ListBox
stardiv.vcl.controlmodel.Dialog
com.sun.star.linguistic2.LinguProperties
com.sun.star.comp.Impress.XMLOasisMetaExporter
com.sun.star.awt.UnoControlScrollBarModel
com.sun.star.uui.InteractionHandler
com.sun.star.i18n.IndexEntrySupplier_asian
com.sun.star.sdb.InteractionHandler
com.sun.star.comp.Calc.XMLOasisImporter
com.sun.star.awt.UnoControlGroupBox
com.sun.star.form.control.CommandButton
com.sun.star.form.control.FilterControl
com.sun.star.task.PasswordContainer
com.sun.star.xml.crypto.XMLSecurityContext
com.sun.star.reflection.ProxyFactory
com.sun.star.chart2.PolarCoordinateSystem2d
com.sun.star.setup.ProductRegistration
com.sun.star.i18n.NumberFormatMapper
com.sun.star.comp.Writer.XMLOasisAutotextEventsExporter
com.sun.star.comp.Writer.XMLOasisAutotextEventsImporter
com.sun.star.animations.SequenceTimeContainer
com.sun.star.form.component.RadioButton
stardiv.one.form.control.ImageButton
com.sun.star.sheet.RecentFunctions
com.sun.star.animations.AnimateTransform
com.sun.star.i18n.LocaleCalendar
com.sun.star.configuration.backend.LayerUpdateMerger
stardiv.vcl.controlmodel.PatternField
stardiv.vcl.VclToolkit
com.sun.star.awt.UnoControlRadioButton
com.sun.star.datatransfer.MimeContentTypeFactory
stardiv.one.form.component.CommandButton
com.sun.star.chart2.ChartDocumentWrapper
com.sun.star.xml.crypto.sax.SignatureVerifier
com.sun.star.sheet.AddIn
com.sun.star.task.XStatusIndicator
com.sun.star.awt.UnoControlCurrencyFieldModel
com.sun.star.comp.Calc.XMLStylesImporter
com.sun.star.report.ReportToolboxController
com.sun.star.comp.Chart.XMLOasisMetaExporter
com.sun.star.comp.Chart.XMLOasisMetaImporter
com.sun.star.packages.Package
com.sun.star.resource.StringResource
com.sun.star.text.DefaultNumberingProvider
com.sun.star.ui.UIElementFactoryManager
stardiv.one.form.control.DateField
com.sun.star.chart2.PolarCoordinateSystem3d
com.sun.star.form.control.GridControl
com.sun.star.inspection.DefaultHelpProvider
com.sun.star.awt.UnoControlRoadmap
com.sun.star.chart2.CandleStickChartType
com.sun.star.awt.tree.TreeControlModel
com.sun.star.sdb.ContentLoader
com.sun.star.form.control.ImageButton
com.sun.star.configuration.backend.WinInetBackend
com.sun.star.ui.dialogs.FilterOptionsDialog
com.sun.star.sheet.TableAutoFormats
com.sun.star.comp.Draw.XMLOasisExporter
com.sun.star.form.component.DatabasePatternField
com.sun.star.script.DialogLibraryContainer
com.sun.star.comp.Draw.XMLImporter
com.sun.star.awt.UnoControlNumericFieldModel
com.sun.star.sheet.addin.Analysis
com.sun.star.form.component.NumericField
com.sun.star.document.ImportFilter
com.sun.star.awt.ImageProducer
com.sun.star.script.provider.ScriptProviderForJavaScript
com.sun.star.drawing.ModuleDispatcher
stardiv.vcl.controlmodel.ProgressBar
com.sun.star.rendering.CanvasFactory
stardiv.vcl.control.FixedText
com.sun.star.linguistic2.LinguServiceManager
com.sun.star.ui.UICategoryDescription
com.sun.star.ui.dialogs.OfficeFilePicker
stardiv.one.form.component.CurrencyField
com.sun.star.frame.SessionListener
com.sun.star.form.binding.BindableDatabaseRadioButton
com.sun.star.animations.ParallelTimeContainer
com.sun.star.awt.UnoControlComboBoxModel
com.sun.star.comp.Calc.XMLOasisContentImporter
com.sun.star.datatransfer.clipboard.ClipboardManager
com.sun.star.script.DocumentScriptLibraryContainer
com.sun.star.chart2.LogarithmicRegressionCurve
com.sun.star.comp.Calc.XMLOasisExporter
com.sun.star.comp.Impress.XMLContentExporter
com.sun.star.comp.Impress.XMLContentImporter
com.sun.star.awt.UnoControlProgressBarModel

[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-18 Thread hik4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Tue Mar 18 16:01:11 + 
2008 ---
hw returned by
lsm.getHyphenator().hyphenate
is *null*

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-05 Thread hik4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Wed Mar  5 10:04:23 + 
2008 ---
What would be the next best supported option for me?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-05 Thread tl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Wed Mar  5 11:04:31 + 
2008 ---
Please try as well with Java.
- if it does not work you have to come back to me 
- if it does work you have to find the person who wrote the Delphi bridge
  and present the problem to him/her


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-05 Thread hik4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Wed Mar  5 11:08:20 + 
2008 ---
it works with Basic.
My question is: what supported API could I use with Delphi?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-05 Thread tl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Wed Mar  5 11:20:10 + 
2008 ---
For hyphenation and linguistic there is no secondary API to do the same tasks.
All API is supported for the platforms that are supported!

And thus if your problem is with Delphi only (and not Java as well) you need to
contact the Delphi bridge developer...

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-05 Thread tl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Wed Mar  5 11:22:31 + 
2008 ---
Better make that statement:
All API is supported by us for the *officially* supported platforms.

For the other ones you need to contact the respective developer(s).

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-05 Thread hik4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Wed Mar  5 14:05:02 + 
2008 ---
I just want to clarify this:
it is *not* a Delphi bridge. Delphi is used here like a dynamic language and
uses the *OLE* bridge.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-05 Thread hik4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Wed Mar  5 14:35:46 + 
2008 ---
The following Visual Basic Script code does not work either (it shows 
Nothing):

Set StarOffice = WScript.CreateObject(com.sun.star.ServiceManager)

Set LSM = 
StarOffice.createInstance(com.sun.star.linguistic2.LinguServiceManager)
Set CoreReflection =
StarOffice.createInstance(com.sun.star.reflection.CoreReflection)

Dim Locale
Set Cl = CoreReflection.forName(com.sun.star.lang.Locale)
Cl.createObject Locale
Locale.Language = de
Locale.Country = DE
Locale.Variant = 

Dim PV
Set Cl = CoreReflection.forName(com.sun.star.beans.PropertyValue) 
Cl.createObject PV

Set H = LSM.getHyphenator()
Dim Props(0)
Set Props(0) = PV
Set xHW = H.hyphenate(Silbentrennung, Locale, 0, Props)
MsgBox TypeName(xHW)




-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-05 Thread tl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Wed Mar  5 14:51:37 + 
2008 ---
Ok. I see.
In that case I was told your best source for help would be to ask on the
OpenOffice dev mailing-lists especially
  [EMAIL PROTECTED]  and
  [EMAIL PROTECTED]

See also http://www.openoffice.org/mail_list.html


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-05 Thread tl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Wed Mar  5 14:53:01 + 
2008 ---
And don't forget to subscribe in order to not miss the answers.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-03 Thread tl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Mon Mar  3 13:24:11 + 
2008 ---
TL: Can't reproduce the problem with just Basic macro in DEV300 m0.
Seems I need access to a Delphi Installation.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-03 Thread hik4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Mon Mar  3 13:28:23 + 
2008 ---
You can download a free Delphi version from www.codegear.com.
Could you please post here your Basic version?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-03 Thread tl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190


User tl changed the following:

What|Old value |New value

 Assigned to|tl|jsc





--- Additional comments from [EMAIL PROTECTED] Mon Mar  3 13:28:59 + 
2008 ---
TL-JSC: According to CN we do not support a Delphi UNO bridge.
Also doing some quick checks in-house nobody seems to have Delphi.

CN suggested to assign this to the community developer of the Delphi bridge.
Do you have any idea who that might be?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-03 Thread tl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Mon Mar  3 13:32:57 + 
2008 ---
BTW the code will still not work because the Country part of the locale needs to
be set as well...

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-03 Thread tl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190


User tl changed the following:

What|Old value |New value

  CC|''|'tl'





--- Additional comments from [EMAIL PROTECTED] Mon Mar  3 15:24:33 + 
2008 ---
.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-03-03 Thread tl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190





--- Additional comments from [EMAIL PROTECTED] Mon Mar  3 15:22:43 + 
2008 ---
Basic macro:

REM  *  BASIC  *

Sub Main

xLSM = createUnoService( com.sun.star.linguistic2.LinguServiceManager )

Dim aLang as new com.sun.star.lang.Locale
aLang.Language = de
aLang.Country  = DE
aLang.Variant  = 

xH = xLSM.getHyphenator()

xHW = xH.hyphenate( Silbentrennung, aLang, 5, DimArray() )
aText = no result
if not IsNull(xHW) then
aText = xHW.getHyphenatedWord() +  -  + xHW.getHyphenationPos()
endif
msgbox aText

End Sub


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-02-18 Thread hik4
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190
 Issue #|86190
 Summary|LinguServiceManager.getHyphenator fails
   Component|api
 Version|1.0.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|jsc
 Reported by|hik4





--- Additional comments from [EMAIL PROTECTED] Mon Feb 18 12:48:25 + 
2008 ---
The following Delphi code fails at the marked line with:

[automation bridge] unexpected exception in
UnoConversionUtilitiesT::variantToAny !

function TSampleCode.Hyphenate(S: string): string;
var
H: Variant;
Locale: Variant;
Props: Variant;
HW: Variant;
CoreReflection: Variant;
LSM: Variant;
begin
LSM := StarOffice.createInstance(
'com.sun.star.linguistic2.LinguServiceManager');
if VarIsArray(LSM) then
Exit;
if (VarIsEmpty(LSM) or VarIsNull(LSM)) then
Exit;

CoreReflection := StarOffice.createInstance(
'com.sun.star.reflection.CoreReflection');
CoreReflection.forName('com.sun.star.lang.Locale').createObject(
Locale);
Locale.Language := 'de';
Locale.Country := '';
Locale.Variant := '';

H := LSM.getHyphenator(); // === here an error

HW := H.hyphenate('Silbentrennung', Locale, 2, Props);
H := Null;
Props := Null;
Locale := Null;
LSM := Null;
end;

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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



[api-issues] [Issue 86190] LinguServiceManager.getHyp henator fails

2008-02-18 Thread jsc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=86190


User jsc changed the following:

What|Old value |New value

 Assigned to|jsc   |tl





--- Additional comments from [EMAIL PROTECTED] Mon Feb 18 14:02:32 + 
2008 ---
jsc - tl: i would say this is one for you

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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