Posted by office viewer on July 5th, 2009
How to add some text at the end of document that is opened in Edraw office viewer, Kindly send me java script code so that i can enter signatures in my document. Please reply as soon as possible and send my java script Example.
Posted by shinnai on June 19th, 2009
We would like to distribute the ActiveX control in our organization on several desktops. I understand we need to install the ocx and dll files. How do we install them and also what else needs to be done?
I do have the installation exe file but unfortunately we cannot push exe to desktops. Can you please help with this?
Posted by nilpesh_svit on March 19th, 2009
Have you seen a primary error in your component?
I’ve downloaded you OCX component and create a routine to use it reading Excel data. In a non-formatted cell, it read perfectly. In a formatted cell, with the currency simbol, it doesn’t read nothing.
Posted by office viewer on March 18th, 2009
Is there any system requirements?
the server can be any server such as Windows Server or Linux.
The client can be Windows 2000/XP/2003/Vista/2008/7
The client needs install the MS Office.
Posted by office viewer on March 7th, 2009
You can disable or delete the context menu item in MS Word or Excel by VBA programming.
Word:
OA1.CreateNew “Word.Document”
Set objWord = OA1.ActiveDocument
objWord.Application.CommandBars(“Text”).Controls(“Cu&t”).Enabled = False
objWord.Application.CommandBars(“Text”).Controls(“&Copy”).Enabled = False
objWord.Application.CommandBars(“Text”).Controls(“&Paste”).Enabled = False
‘delete item directly
‘objWord.Application.CommandBars(“Text”).Controls(1).Delete
‘objWord.Application.CommandBars(“Text”).Controls(2).Delete ….
Excel
OA1.Open “c:\text.xls”
Set objExcel = OA1.ActiveDocument
objExcel .Application.CommandBars(“Cell”).Controls(“Cu&t”).Enabled = False
objExcel .Application.CommandBars(“Cell”).Controls(“&Copy”).Enabled = False
objExcel .Application.CommandBars(“Cell”).Controls(“&Paste”).Enabled = False
‘delete item directly
‘objExcel .Application.CommandBars(“Cell”).Controls(1).Delete
‘objExcel .Application.CommandBars(“Cell”).Controls(2).Delete ….
Posted by Evan on February 18th, 2009
Hi
I would like to use the ocx in BDS2006 vcl.net application. I would appreciate help in setting this up.
brgrds
milind
Posted by office viewer on February 15th, 2009
For IE7 or IE8, you can delete the IE Addon with the follow method:
1. Open a new Internet Explore.
2. Go to Internet Explorer, and click the “Tools” button in the left of browser, and then click Manage Add-ons.
3. Click Toolbars and Extensions
4. Double Click the add-on you want to delete. In the pop up message box, you can click the Delete button in the bottom.
For IE6, you can delete the IE Addon with the follow method:
IE Toolbar > Options > General > Setting > View Object…
Then delete the Edraw Viewer Component for Word.
Posted by office viewer on February 12th, 2009
How to add Edraw Excel Viewer Component or Word Viewer ActiveX Control to your Visual Basic 6.0 project
1. From the Project Menu select Components…
2. Select control “EDWord ActiveX Control Module” in the controls table.
3. Click the OK Button.
4. The control will now appear in your toolbox.
5. Drag and drop the control on your form.
6. Right click the control then choose the View Code… item.
7. Add the NotifyCtrlReady event and set the library file to load.
Private Sub EDWord1_NotifyCtrlReady()
EDWord1.LicenseName = “”
EDWord1.LicenseCode = “”
End Sub
8. Run the project.
Posted by office viewer on January 28th, 2009
The office word component can be used for web application. You can embed it at the
html Object tag.
<object classid=”clsid: 569EB2D6-161D-4AE0-9804-640E724A297A”
id=”edword” width=”100%” height=”100%”
codebase=”http://www.yoursite.com/download/edword.cab#5,0,0,131“>
</object>
Note: You should put the edword.cab file in your own site and change the
codebase url when you distribute the component.
You can view the html samples in the install folder\samples\html folder.
The edword.
Posted by office viewer on January 15th, 2009
The new version has the GetApplication method. You can use it to replace the Application method.
If you want to call the print dialog, you can use the follow method.
EDOffice.PrintDialog
Recent Comments