Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | 18-Oct-2019 | - | ||||
README.txt | H A D | 18-Oct-2019 | 1.4 KiB | 34 | 25 | |
SOActionsApproval.cpp | H A D | 18-Oct-2019 | 1.5 KiB | 51 | 20 | |
SOActionsApproval.h | H A D | 18-Oct-2019 | 3 KiB | 103 | 52 | |
SOActionsApproval.rgs | H A D | 18-Oct-2019 | 586 | 25 | 24 | |
SOActiveX.cpp | H A D | 18-Oct-2019 | 33.6 KiB | 1,173 | 893 | |
SOActiveX.h | H A D | 18-Oct-2019 | 6 KiB | 198 | 127 | |
SOActiveX.rgs | H A D | 18-Oct-2019 | 783 | 34 | 33 | |
SOComWindowPeer.cpp | H A D | 18-Oct-2019 | 1.5 KiB | 50 | 20 | |
SOComWindowPeer.h | H A D | 18-Oct-2019 | 4.4 KiB | 155 | 98 | |
SOComWindowPeer.rgs | H A D | 18-Oct-2019 | 535 | 24 | 23 | |
SODispatchInterceptor.cpp | H A D | 18-Oct-2019 | 7.4 KiB | 244 | 173 | |
SODispatchInterceptor.h | H A D | 18-Oct-2019 | 5.8 KiB | 177 | 114 | |
SODispatchInterceptor.rgs | H A D | 18-Oct-2019 | 577 | 24 | 23 | |
StdAfx2.cpp | H A D | 09-Sep-2021 | 1.3 KiB | 42 | 10 | |
StdAfx2.h | H A D | 18-Oct-2019 | 2.2 KiB | 64 | 22 | |
com_uno_helper.h | H A D | 18-Oct-2019 | 1.6 KiB | 46 | 19 | |
example.html | H A D | 18-Oct-2019 | 1.5 KiB | 47 | 15 | |
makefile.mk | H A D | 18-Oct-2019 | 3.4 KiB | 157 | 93 | |
resource.h | H A D | 18-Oct-2019 | 1.7 KiB | 48 | 17 | |
so_activex.cpp | H A D | 18-Oct-2019 | 31.5 KiB | 712 | 526 | |
so_activex.def | H A D | 18-Oct-2019 | 372 | 14 | 11 | |
so_activex.rc | H A D | 18-Oct-2019 | 3.5 KiB | 135 | 106 |
README.txt
1 Description. 2 3The StarOffice ActiveX control shows an example of access to UNO through COM technology. 4It requires a properly installed StarOffice version 6.0/6.1 or OpenOffice 1.0. 5This is a Lite ActiveX control so it can be used only in containers that 6allows to use such controls. 7 8Pressing to any link to staroffice document should activate the control. 9So the document will be opened in ReadOnly mode. 10 11Also it can be activated with an <OBJECT> tag from a html-page. 12Without any parameters for an object tag a new writer document will be 13opened for editing. Possible parameters are 14 src - full URL to the file that should be edited/viewed; 15 it can contain "private:factory/..." URLs to open new documents 16 for edit, for example "private:factory/swriter" 17 readonly - the default value is "true", in case it is set to any other 18 value the document is opened for editing 19 20As any ActiveX control this one should be registered. 21To let MSIE register it itself the "CODEBASE" parameter 22for the "OBJECT" tag should be specified 23with an URL to the library "so_activex.dll". 24The example of registration with "OBJECT" tag is in example.html. 25 26Also it can be done using regsvr32 application. 27To do it please write 28<Path to Windows installation>\System32\regsvr32 so_activex.dll 29 30To unregister the control please use /u option: 31<Path to Windows installation>\system32\regsvr32 so_activex.dll /u 32 33 34