Name Date Size #Lines LOC

..18-Oct-2019-

README.txtH A D18-Oct-20191.4 KiB3425

SOActionsApproval.cppH A D18-Oct-20191.5 KiB5120

SOActionsApproval.hH A D18-Oct-20193 KiB10352

SOActionsApproval.rgsH A D18-Oct-2019586 2524

SOActiveX.cppH A D18-Oct-201933.6 KiB1,173893

SOActiveX.hH A D18-Oct-20196 KiB198127

SOActiveX.rgsH A D18-Oct-2019783 3433

SOComWindowPeer.cppH A D18-Oct-20191.5 KiB5020

SOComWindowPeer.hH A D18-Oct-20194.4 KiB15598

SOComWindowPeer.rgsH A D18-Oct-2019535 2423

SODispatchInterceptor.cppH A D18-Oct-20197.4 KiB244173

SODispatchInterceptor.hH A D18-Oct-20195.8 KiB177114

SODispatchInterceptor.rgsH A D18-Oct-2019577 2423

StdAfx2.cppH A D09-Sep-20211.3 KiB4210

StdAfx2.hH A D18-Oct-20192.2 KiB6422

com_uno_helper.hH A D18-Oct-20191.6 KiB4619

example.htmlH A D18-Oct-20191.5 KiB4715

makefile.mkH A D18-Oct-20193.4 KiB15793

resource.hH A D18-Oct-20191.7 KiB4817

so_activex.cppH A D18-Oct-201931.5 KiB712526

so_activex.defH A D18-Oct-2019372 1411

so_activex.rcH A D18-Oct-20193.5 KiB135106

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