To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85073





------- Additional comments from [EMAIL PROTECTED] Wed Jan  9 10:44:37 +0000 
2008 -------
cd->tobiaskrais: I am sorry but I cannot reproduce the crash using
OpenOffice.org 2.3 final and your Java application (I had to remove the two
imports de.twc.oocom.oo.OOWorkbench and de.twc.oocom.utils.OOUtils). Could you
please test the following Basic script which does the same as your Java program.

REM  *****  BASIC  *****

Sub Main
  rem create the dialog model and set the properties
  dialogModel = createUnoService( "com.sun.star.awt.UnoControlDialogModel" )
  
  dialogModel.setPropertyValue( "PositionX", 0 )
  dialogModel.setPropertyValue( "PositionY", 0 )
  dialogModel.setPropertyValue( "Width", 200 )
  dialogModel.setPropertyValue( "Height", 200 )
  dialogModel.setPropertyValue( "Title", "Fehler!" )

  inputModel01 = dialogModel.createInstance(
"com.sun.star.awt.UnoControlEditModel" )
  inputModel01.setPropertyValue("PositionX", 5 )
  inputModel01.setPropertyValue("PositionY", 5 )
  inputModel01.setPropertyValue("Width", 190 )
  inputModel01.setPropertyValue("Height", 120 )
  inputModel01.setPropertyValue("MultiLine", true)
  rem Application crashes next line with exception
  inputModel01.setPropertyValue("AutoHScroll", true)
  inputModel01.setPropertyValue("AutoVScroll", true)
  inputModel01.setPropertyValue("ReadOnly", true)
  inputModel01.setPropertyValue("Text", "CrashText")
  inputModel01.setPropertyValue("Name", "CrashText")
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]

Reply via email to