wordpress hit counter
Browse by Tags - .Net - Development Tools - OpenXML Developer

Browse by Tags

Development Tools

Discussions about working with Open XML using a wide range of development tools
Tagged Content List
  • Forum Post: Adding image to a table cell

    Hi, I have just created a table in powerpoint with 9 column headers. I have tried adding texting values read from the datatable to these columns in ppt. I w as able to proceed with binding the text. Now as a second step i want to load images in these cells based on the conditions that are applied on...
  • Forum Post: Newbie to OpenXml: How do I read the contents of a TextBox in an Excel 2010 Spreadsheet?

    Thanks for your advice Br.
  • Forum Post: Get selected value from StdContentComboBox

    I would like to get the selected value from a StdContentComboBox, this is a Content control placed in a docx document. I need to get the selected value in .NET, Thanks very much
  • Forum Post: Audio in Presentation ML, Uri problem

    Hi everyone, I'm facing a problem for URI after adding a MP3 to a slide. I created 2 distincts powerpoints (one slide each one, and within the second I included a MP3, autoplay) Then I used "Open XML SDK 2.0 Productivity Tool for Microsoft Office" to produce a difference between the two...
  • Forum Post: Error generating table via OpenXML .Net, not able to use tools to diagnose

    I am having problems generating an Excel doc with a table in it. When I open the file in Excel, I get an error: Excel was able to open the file by repairing or removing the unreadable content. Repaired Records: Table from /xl/tables/table.xml part (Table) Click to view log file listing repairs <link...
  • Forum Post: Get current line number or count in word document C#

    Hello! I am exporting my data to a word (*.docx) document using OpenXML.The document has 3 columns. After all the data written, I have to count number of lines entered in the document and accordingly add some text at the middle position of the 3rd column of the last page. All I need is to count number...
  • Forum Post: How to access docx default style

    I've been trying to get all the docx's document content and information about each run/paragraph. So far I've managed to get style information from run/paragraph properties. using (WordprocessingDocument doc = WordprocessingDocument.Open(filePath, false)) { MainDocumentPart mainPart = doc...
  • Forum Post: Open docx, change and stream to user

    My code is below. I'm trying to open a Word document with Open XML and change certain text. The document must then be send to the client where they can save it on their PC or Open it. It send a document to the client but it is blank. When I save my INMemory document ot says the file cannot be open...
  • Forum Post: PowerPoint and SWF file

    Hi, I need to pass parameters to ShockWave object embeded in PowerPoint presentation. I need to run different movie in the object depending upon the parameter received. I did looked into it on different forums but apparently it's not supported through OpenXML. Is it? I looked in following thread...
  • Forum Post: maintain rich text from source doc after embedding in Word content control

    I'm trying to embed rich text inside of rich text content control in Word. Running code from SharePoint web part, I can successfully embed text and images from SharePoint lists into the target Word doc. BUT, if the source text has formatting markup, this markup is not rendered in the target doc....
  • Forum Post: How to create a formula cell?

    Hello, I'm trying to figure out how to create a formula cell. A simple SUM for a column. When I try to open the Excel sheet. I get the following Excel message: "Excel found unreadable content in '*xlsx'. Do you want to recover the contents of this workbook? If you trust the source of...
  • Forum Post: How to Persist DOCX Document Level Protection, when saved as DOC

    I have generated a word document (docx) using OpenXML SDK 2.0 / C# / .NET 4.0. This is a "document-level" read-only document with encrypted password protection. Few paragraphs in this document are editable, I provided the permission to edit by using permStart and permEnd permission tags. When...
  • Forum Post: C# OpenXML extract paragraph text with all formatting

    Using C# & OpenXML, I need to create a document. The document have series of paragraphs created under docs body. I need to make few paragraphs ready-only . To accomplish this the entire document made read-only . Edit permission to few paragraphs are provided using permStart and permEnd tags. The...
  • Forum Post: How to paginate a Word document from c# with Open XML

    How to page a word document for example if there are 10 pages: page 1 of 10 Page 2 of 10 ... if there are 15 pages 1 of 15 Page 2 of 15 ... and so on to generate a dynamic number of pages
  • Forum Post: Create Table in Excel sheet and adding my webpage text box values in table

    Hi all, i have to create new table in excel sheet and i have to add my web page text box values to that table using openxml ..... Can anyone help me in this regard? I am doing it using Asp.Net with C# and OpenXML SDK. Any help? Thanks in anticipation....
  • Forum Post: How to create new table and have to add table datas in new slide in pptx

    Hi All, I have to create new slide in that slide with creating new table in programmatically and have to add text values in table td ..... Can anyone help me in this regard? I am doing it using Asp.Net with C# and OpenXML SDK. Any help? Thanks in anticipation....
  • Forum Post: create new slide after the second slide and create Text in PPtx file

    Hi, I am trying to add a new image to a newly created slide in a PowerPoint presentation its working fine(i used pramodhegde code). but the new slide creating last i have to create in after second slide and if again i created new slide mean it have create after the third slide....then i have to create...
  • Forum Post: Open XML Newbie - Basic Question

    Hi All, I am a Java developer that has been tasked to do some research into an ASP.NET system. I have no experience with any .NET so I would appreciate basic answers :) Scenario: I read in an rtf document which is a letter template from a db, I then need to merge information taken from the user via a...
  • Forum Post: Advice - Windows Service

    Due to have trouble automating word through a windows service (vb.net), I am contemplating moving over to Open XML. The service loads a word document, loops through merge fields, replaces them with appropriate data, saves the files then prints it. Is this achievable in Open XML, are there any resources...
  • Forum Post: Search and replace rectangle on Excel Sheet

    Hello! How can I find rectangle with text on sheet? Thanks
  • Forum Post: Custom Dash in PowerPoint

    Hi, I am working on a PowerPoint automation assignment. I need to draw a custom dash like we do in Word documents using Stroke object. In stroke object you can specify the dash length followed by space b/w dashes. I tried finding it for PowerPoint and found CustomDash class but I am not able to use it...
  • Forum Post: MailMerge with OpenXML

    We have an existing VB.NET desktop application that uses Microsoft Word documents with merge fields as templates, and looks up the data from the database to populate those merge fields at run time to produce large number of letters. The merging is currently done with the Microsoft Interop libraries....
  • Forum Post: Create Datetime Cell with open xml sdk

    hi, im new to open xml sdk, searched some information about adding new datetime cell to excel. i have this: Row bRow = new Row(); bRow.RowIndex = 2; Cell bCell = new Cell(); bCell.CellReference = "A" + 2; bCell.CellValue = new CellValue { Text = DateTime.Now.ToOADate().ToString() }; ; and add...
  • Forum Post: Convert wordprocessingml (2010) to HTML with styles/css

    Hi, I'm trying to convert word 2010 docx to HTML using wordprocessingML (OpenXmlPowerTools - HTMLConverter), it converts the wordML to HTML, but the issue is the word formatting/styles are not converted to HTML styles. The current HTMLConverter class which I have, doesn't support formatting,...
  • Forum Post: Font sizes in word and powerpoint

    Hi, I am working on a utility where I need to generate PPT and Doc while getting meta data as an input from some other system. I am getting font size like 10 or 11 but when I apply this same font to Drawing.RunProperties object, outcome is not what it should be. So should I multiply this font size with...
Page 1 of 2 (30 items) 12