To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=67369
User bc changed the following:
What |Old value |New value
================================================================================
Ever confirmed| |1
--------------------------------------------------------------------------------
Status|UNCONFIRMED |STARTED
--------------------------------------------------------------------------------
Target milestone|--- |OOo Later
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Tue Jul 18 06:52:21 -0700
2006 -------
bc: If you create the RoadmapItems after the insertion of the roadmap into the
dialog it works fine as you can see further down. I will accept the issue anyway
but set the target to "Office Later".
Sub Main
oDlg = CreateUnoDialog(DialogLibraries.Standard.Dialog1)
oRoadmapModel
=Dlg.Model.createInstance("com.sun.star.awt.UnoControlRoadmapModel")
With oRoadmapModel
.Height = oDlg.Model.Height
.Width = oDlg.Model.Width/3
.PositionX = 0
.PositionY = 0
.Name = "RoadMap"
.Text = "Steps"
End With
oDlg.Model.insertByName( "RoadMap", oRoadmapModel )
Step1 = oRoadmapModel.createInstance()
Step1.ID = 1
Step1.Label = "step 1"
Step1.Enabled = True
oRoadmapModel.insertByIndex(0, Step1)
Step2 = oRoadmapModel.createInstance()
Step2.ID = 2
Step2.Label = "step 2"
Step2.Enabled = True
oRoadmapModel.insertByIndex(1, Step2)
oDlg.execute()
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]