Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 83 results for
openxml
- Page 1
OpenXML Word 2007 header not displaying
Programming
Software Development
14 Years Ago
by G_Waddell
… create a batch of word documents using the Microsoft Office
OpenXML
SDK. The documents are made up of a header and…
Problem with OPENXML in UDF
Programming
Databases
20 Years Ago
by Makarand_Keer
…I am facing problem is SQL Server 2000, with
OPENXML
. I am having data which i receive from some other…SQL 2000 database table. But as everybody aware that using
OPENXML
directly in JOIN gives error sometimes (refer :[url]http://…reusability purpose), however UDF is not allowing me play with
OPENXML
:( Could anybody tell me how can i make reusable …
Insert Image Into Shape In Word Document Using C# OpenXML SDK
Programming
Software Development
9 Years Ago
by Dankwansere
….Interop libraries on server side and they instead suggest using
OpenXML
. Using MS.Interop libraries we were able to do this… searched thoroughly online to see if this is possible with
openXML
but so far have found nothing, Only thing i've… a specific position inside a shape..is this possible in
openXML
SDK 2.5?
Does anyone use OpenXML in MVC?
Programming
Software Development
11 Years Ago
by bofcarbon1
I was wondering if anyone out there was usiing
OpenXML
in an MVC web application. I've used it in C#.NET code behind for ASP.NET web forms web applications and was thinking about using it for generating an MS Word Document.
Header through Openxml in word doc
Programming
Software Development
9 Years Ago
by Rajni Gupta
Hi, Can anyone suggest that how to add headers in word doc which is generated through
openXML
.
Re: OpenXML Word 2007 header not displaying
Programming
Software Development
14 Years Ago
by G_Waddell
Hi Guys, The problem was to do with the fact that if you are creating a document from scratch, there are no section properties and therefore there is no reference to the header unless you explicitly add them.
Re: List from OpenXML Excel Column Headers
Programming
Software Development
15 Years Ago
by kvprajapati
I don't think that there is an easy way to get list of columns with
OpenXML
API. Of course, look at my post #2, ExtremeML; a new open source library that adds a powerful layer of additional functionality to the
OpenXml
SDK. Read [URL="http://openxmldeveloper.org/articles/7937.aspx"]this [/URL]article.
UPDATE question for ms sql 2000
Programming
Databases
18 Years Ago
by rhaazy
…LastModified) SELECT *, LastModified = getdate() FROM
openxml
(@iTree, 'ComputerScan', 1) WITH ( ComputerName…SELECT *, @assetid, LastModified = getdate() FROM
openxml
(@iTree, 'ComputerScan', 1) WITH ( ComputerName …
Select where columnname like ?
Programming
Databases
14 Years Ago
by faintfascinatio
…;/person.11> </people> [/CODE] I am using
openxml
to read this file and insert names (and other person…, @person INSERT INTO [Person](firstname, lastname) SELECT firstname = [fname] FROM
OPENXML
(@idoc, '//people/person.1',2) WITH ([fname] varchar(20) [lname… of a "SELECT WHERE column_name LIKE 'person'" with
openxml
?
error object reference required- C# Open XML to export from SQL to excel
Programming
Software Development
8 Years Ago
by Wyatt_1
… System.Text; using System.Threading.Tasks; using DocumentFormat.
OpenXml
; using DocumentFormat.
OpenXml
.Packaging; using DocumentFormat.
OpenXml
.Spreadsheet; using System.IO; namespace ExcellTakeTwo { class…
Re: Select where columnname like ?
Programming
Databases
14 Years Ago
by huangzhi
… select @idoc declare cs_Parent cursor forward_only for select LocalName FROM
OPENXML
(@idoc, '//people') where parentid = 2 open cs_Parent fetch next from…/' + @Local INSERT INTO [Person](firstname, lastname) select fname , lname from
OPENXML
(@idoc, @XML, 2) with ([fname] varchar(20), [lname] varchar(20…
Using table Variables Create outside a UDF inside a UDF
Programming
Databases
15 Years Ago
by vuyiswamb
… with characteristics of the given table SELECT * INTO #selectedItems FROM
OPENXML
( @xmldoc , '/Root/Tags' , 2) WITH ( [TagID] int ) EXEC sp_xml_removedocument… with characteristics of the given table SELECT * INTO #selectedTerms FROM
OPENXML
( @xmldoc , '/Root/Tags' , 2) WITH ( [TagID] int ) EXEC …
Xml - MS Access - VB 6
Programming
Software Development
19 Years Ago
by srikkanthan
… with any idea. (In SQL Server 2000, we have this
OPENXML
capabilities - Is there any 3rd party tool, library to do…
Using a SP to insert only new rows in SQL Server
Programming
Databases
15 Years Ago
by adamf07
… int EXEC sp_xml_preparedocument @idoc OUTPUT, @XmlParms SELECT * into #tmpParms FROM
OPENXML
(@idoc, '/InvestAdminDataSet/HOP_Tickets_From_Excel',2) WITH (ITGNumber int ,RequestType varchar(50…
Office 2007 automation error on windows 2008
Programming
Web Development
15 Years Ago
by Bugaya
… want to invest in other development solutions or workarounds like
OpenXML
, I prefer to be able to solve the solution with…
Re: Office 2007 automation error on windows 2008
Programming
Web Development
15 Years Ago
by vkale
… want to invest in other development solutions or workarounds like
OpenXML
, I prefer to be able to solve the solution with…
Import XML to SQL
Programming
Databases
15 Years Ago
by vuyiswamb
… OUTPUT, @xml TRUNCATE TABLE _RegistrationXM INSERT INTO _RegistrationXM SELECT * FROM
OPENXML
( @doc , 'Import/Item' , 2) WITH ( Student varchar(32), SubjectCode varchar…
The XML parse error 0xc00ce556 occurred on line number 1
Programming
Databases
15 Years Ago
by vuyiswamb
… with characteristics of the given table SELECT * INTO #Constraints FROM
OPENXML
( @xmldoc , '/Root/Row' , 2) WITH ( [ID] int, -- ID of the…
Add XML Predicate to SQL Query
Programming
Software Development
14 Years Ago
by smegal
… 1st value form xml file "10137294" SELECT * from
openxml
(@idoc, '/data/row/value',3) with (value [1] varchar(50…
Re: Add XML Predicate to SQL Query
Programming
Software Development
14 Years Ago
by smegal
This is the syntax I was looking for. SELECT * from
openxml
(@idoc, '/data/row/value',3) with (IncidentNumber varchar(50) 'value[1]', DrugName varchar(50) 'value[13]' )
Programming advice
Programming
Software Development
13 Years Ago
by Srcee
… to zip/unzip files, read/write from xml files, use
OpenXml
, connect with database, send mail via code. I have read…
How to import data in XML file to Excel sheet
Programming
Software Development
12 Years Ago
by Manu Krrish
… Application.DisplayAlerts = False strTargetFile = "C:\BookData.xml" Workbooks.
OpenXML
Filename:=strTargetFile, LoadOption:=xlXmlLoadImportToList Application.DisplayAlerts = True End Sub But…
Edit existing xml spreadsheet in C#
Programming
Software Development
11 Years Ago
by danimischiu
Hy all, Does anybody know a good method to edit data from office xml spreadsheet format in C#? I've found a way to get data from it using
OpenXML
but I'm stuck at saving the changes made back in the file. I've attached my source file here..
A word document's contents as the body of an email meassage
Programming
Software Development
11 Years Ago
by MARKAND911
How do I open a Word document and feed its contents as the body of an email message using
OpenXML
and C#?
Re: A word document's contents as the body of an email meassage
Programming
Software Development
11 Years Ago
by deceptikon
Are we talking about working with
OpenXML
directly or through an SDK?
Re: A word document's contents as the body of an email meassage
Programming
Software Development
11 Years Ago
by MARKAND911
I want this to be done in c#. Either with
OpenXML
directly of through an SDK.
Export data to Excel from Datagridview
Programming
8 Years Ago
by Nazneen_1
…; *.xls) // IExcelDataReader excelReader = ExcelReaderFactory.CreateBinaryReader(stream); //... //2. Reading from a
OpenXml
Excel file (2007 format; *.xlsx) IExcelDataReader excelReader = ExcelReaderFactory.CreateOpenXmlReader(stream…
List from OpenXML Excel Column Headers
Programming
Software Development
15 Years Ago
by watergeek
I am using VB.net 2008 express edition I have figured out how to use some of the code snippets for the open xml sdk to create a drop down list of all the sheets in an excel file. I can also use the code snippet to get the value of an individual column header. What I want is a drop down list of all column headers. I could create an array…
Re: List from OpenXML Excel Column Headers
Programming
Software Development
15 Years Ago
by kvprajapati
Show us your code. I recommend [URL="http://www.extrememl.com/index.php/home/download"]extrememl[/URL].
Re: List from OpenXML Excel Column Headers
Programming
Software Development
15 Years Ago
by watergeek
here is the code from the snippets: [CODE] ' Given a document name, a worksheet name, and a cell name, get the column of the cell and return ' the content of the first cell in that column. Public Function XLGetColumnHeader(ByVal docName As String, _ ByVal worksheetName As String, ByVal cellName As String) As String…
1
2
3
Next
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC