Questions tagged [dsoframer]

18 questions
4
votes
3 answers

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…
Steve
  • 1,065
  • 15
  • 34
3
votes
3 answers

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?
wRAR
  • 25,009
  • 4
  • 84
  • 97
2
votes
2 answers

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, …
Steve
  • 1,065
  • 15
  • 34
1
vote
1 answer

How to get a reference to patricullar Word Document Paragraphs and then display it into Dsoframer or any Word Processing component for .net?

We are developing C# .net 4.0 Windows Form Based Application. Here, User Will enter the Word Document paragraph number.After getting that Paragraph number, I want to Show that Selected Paragraph's in the any one of the WORD PROCESSING COMPONENT like…
Saravanan
  • 11,372
  • 43
  • 143
  • 213
1
vote
1 answer

how to display Open xml representation of Word Documents Paragraphs into Rich text box or dsoframer using C#.net4.0 Windows form Application?

I have Word document paragraphs in an Open Xml representation(Generated by Open xml - sdk2.0).Now i want to display that Open xml representation based paragraphs in the Rich Text box or DsoFramer(anything inside the application) without changing the…
Saravanan
  • 11,372
  • 43
  • 143
  • 213
1
vote
1 answer

how to edit word comment in c# code (use dsoframer)

When I was in use the dsoframer operation word had a problem. i can add a comment by code like this Microsoft.Office.Interop.Word.Comment cm = word.Comments.Add(word.Application.Selection.Range, "test"); int ctIndex = cm.Index; but how to…
xwei_chen
  • 65
  • 6
1
vote
1 answer

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,…
Steve
  • 1,065
  • 15
  • 34
1
vote
0 answers

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++…
1
vote
1 answer

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…
venkadesh
0
votes
2 answers

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,…
lichao
0
votes
1 answer

word 2010 interop : edit word document header

I am using word 2010 and DSOFramer control to embedded word document in winforms application and I have to enter the header edit mode I am using the code below : if (wordDocument.ActiveWindow.View.SplitSpecial != WdSpecialPane.wdPaneNone) …
DevTun
  • 865
  • 1
  • 8
  • 24
0
votes
1 answer

How to prevent a user from Editing Word document loaded in DsoFramer using C#4.0?

We are developing C#.net 4.0 Windows Forms based application.we are using Dsoframer control to embed the Word document into my Application.Here, i want to prevent the user to edit the document.I have already opened Word Document in READ Only…
Saravanan
  • 11,372
  • 43
  • 143
  • 213
0
votes
0 answers

How to close WORD or EXCEL files opened by DSO FRAMER control?

I am using DSO-Framer control for opening WORD and EXCEL files. But DSO-Framer control is not closing the instances of this office files after preview. Please give me some solutions to close the instances which are opened by DSO-framer control.
Dipak
  • 21
  • 2
0
votes
1 answer

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,…
Gal Shadeck
  • 532
  • 1
  • 8
  • 13
0
votes
0 answers

AxDSOFramer exception in the Open method

I'm newbie in the use of AxDSOFramer . I have this simple code Try strAnnexeFile = "C:\test\Annexe.xlsx" AxFramerControl2.Open(strAnnexeFile, False, Type.Missing, Type.Missing, Type.Missing) Catch ex As Exception …
Lamloumi Afif
  • 8,941
  • 26
  • 98
  • 191
1
2