dsoframer

DSOFramer closing Excel doc in another window. If unsaved data in file, dsoframer fails to open with "Attempt to access invalid address"

I'm using Microsoft's DSOFramer control to allow me to embed an Excel file in my dialog so the user can choose his sheet, then select his range of cells; it's used with an import button on my dialog. The problem is that when I call the DSOFramer's OPEN function, if I have Excel open in another window, it closes the Excel document (but l...

0x800a03ec when calling Select on an Excel range (IRange). Range was returned from the worksheet's usedrange.

I'm trying to select the "used range". I get the worksheet's UsedRange, then I invoke the Select function on it. I receive HRESULT 0x800a03ec on the select call. Here's the code: COleVariant result; HRESULT hr = AutoWrap(DISPATCH_METHOD, &result, irange, L"Select", 0); I won't bother posting the code for the AutoWrap function (unl...

Excel automation. Need to select multiple items from a Range

I have code that lets me select a single item in arange: COleVariant vItems = cstrAddr; hr = AutoWrap( DISPATCH_PROPERTYGET, &vCell, irange, L"Item", 2, COleVariant((short)(1)), COleVariant((short)(1))); if (FAILED(hr)) return hr; // Use the dispatch interface to select ...

Problem working with DsoFramer

I'm using Dsoframer for my WPF Application to working with Word document. Basically , I need my application to be able to open a word document, modify it, save its content into database. Currently I have to call DsoFramer Save method to save Word document into a temp file, then read the file bytes and insert into database. The problem ...

How to edit DsoFramer 1.3?

I'm using DsoFramer 1.3 in my project to hold Excel (2007) documents. But it have a big problem, that is: All the Excel documents opened by DsoFramer share only one Excel process. The result is when the second Excel document opened by the DsoFramer, the first document is uneditable. Even more, when I double click an Excel document in W...

How to improve dsoframer performance?

Hi, I'm looking for a control that we can use as a text editor in our win and web application. Do you think dsoframer can be a good choice? using dsoFramer ,it takes 3 secs to create a word document .Is it possible to make it faster? ...

Hide or Disable the MS Word Pop up menu While Right Click on the Active Document of the Dso Framer Control With Vb 6.0.

I am using the Microsoft DSO Framer Control to view the word document in the Visual Basic Form. After Hosting(Open) the Word Document in the DSO Framer Control. While Right Click on the Word Document, Ms word Context Menu is Appearing. I Want to Hide this Pop up Menu. Can any One Help me out in this Problem. I am Waiting for the Sol...

DSOFRAMER and 64bit

We've been using dsoframer to embed excel into our .Net app. Small quicks aside, it works great. Doesn't seem to work on a 64bit machine though. Has anyone had any luck with this? Recompiling the interop/source maybe? dsoframer is a C++ ActiveX control so this makes sense... just wondering if anyone has done the work already or if...

MS KB311765 and DsoFramer are missing from MS site

I tried to get DsoFramer and found that its download page and KB article are missing. I've downloaded DsoFramer from cnet.com but I am still curious: why it is removed and if it is deliberate, what should we use instead of it? ...

Prevent opening a file

Hi, I am using dsoFramer to open docx files in winforms. When a docx file is opened in dsoframer and user open the same document from windows explorer, the application becomes unstable. How can I prevent opening the file from windows explorer when it is open in dsoFramer. Best regards. ...

DSOFramer.ocx Hosting word documents in 64 bit Windows Forms

It looks like the DSOFramer.ocx component is not available for download anymore from MSDN as described here. Also the DSOFramer component is a 32 bit component. Given this, i have 2 questions: Is there any other alternative for hosting a word document in a Windows Form apart from using the DSOFramer.ocx component? If i move to Windows ...

dsoFramer, Find and replace does not highlight the searched string

I'm using DsoFramer to embed word document into winform, when using the Find and Replace window the searched strings are not highlighted, it seems that it is a paint issue. Is there someone who met the same problem, how can I avoid this. Regards. ...

DsoFramer disables running Excel instances

I'm using DsoFramer control to display Excel documents within my application. Here's the problem: if i have Excel 2007 running as a standalone application before launching my application, and then launch mine and open an Excel document within it, then standalone Excel becomes inaccessible (can't be alt+tabbed to) for as long as my applic...

AXdsoframer control Not firing OnSaveCompleted event for Excel spreadsheets

Hi, I am using the AXDSoFramer to host excel, word documents in my wpf application. I have the OnSaveCompleted event hookedup but the problem is it DOES not get fired for excel spreadsheets(all versions) but it does work for Word documents tho. Is there something that I am missing? Thanks! Matt ...