'************************************************************************* ' ' Licensed to the Apache Software Foundation (ASF) under one ' or more contributor license agreements. See the NOTICE file ' distributed with this work for additional information ' regarding copyright ownership. The ASF licenses this file ' to you under the Apache License, Version 2.0 (the ' "License"); you may not use this file except in compliance ' with the License. You may obtain a copy of the License at ' ' http://www.apache.org/licenses/LICENSE-2.0 ' ' Unless required by applicable law or agreed to in writing, ' software distributed under the License is distributed on an ' "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ' KIND, either express or implied. See the License for the ' specific language governing permissions and limitations ' under the License. ' '************************************************************************* ' Be sure that all variables are dimensioned: option explicit ' REQUIRED VARIABLES for interface/service tests: ' Required for com.sun.star.container.XIndexContainer: Global oInstance As Variant 'for InsertByName ' Required for XIndexReplace Global oIdxReplaceInstance As Object Sub CreateObj() '************************************************************************* ' COMPONENT: ' cnt.CntUnoDataContainer '************************************************************************* Dim oDataContainer1 As Object Dim oDataContainer2 As Object Dim oInputStream As Object Dim cFileName As String Dim oFileAcc As Object Dim hFile As Integer oObj = createUNOService("com.sun.star.ucb.DataContainer") oDataContainer1 = createUNOService("com.sun.star.ucb.DataContainer") oDataContainer2 = createUNOService("com.sun.star.ucb.DataContainer") oIdxReplaceInstance = createUNOService("com.sun.star.ucb.DataContainer") oInstance = createUNOService("com.sun.star.ucb.DataContainer") oObj.Name = "oDataContainer0" oDataContainer1.Name = "oDataContainer1" oDataContainer2.Name = "oDataContainer2" oInstance.Name = "XDataContainer3" oIdxReplaceInstance.Name = "oIdxReplaceInstance" oObj.insertByIndex(0, oDataContainer1) oObj.insertByIndex(1, oDataContainer2) cFileName = utils.getTempFileURL("CntUnoDataContainer.dat") #hFile = freefile() Open cFileName For Output As #hFile print #hFile "String content from cnt.CntUnoDataContainer" close #hFile oFileAcc = createUnoService("com.sun.star.ucb.SimpleFileAccess") oInputStream = oFileAcc.openFileRead(cFileName) oObj.setInputStream(oInputStream) oObj.setContentType("text/plain") End Sub Sub ResetStreams() End Sub