leider funktioniert das so nicht:
Code: Alles auswählen
Sub ShowAll()
ActiveSheet = ThisComponent.CurrentController.ActiveSheet
oForm = ActiveSheet.Drawpage.Forms.getByIndex(0)
AllBoxes = oForm.Count
For i = 0 to AllBoxes -1
oControl = oForm.getByIndex(i)
If oControl.ClassID = 5 Then
oControl.isVisible = true
End If
Next
End Sub
Gruß,