Click here to Skip to main content
15,885,365 members
Home / Discussions / C#
   

C#

 
AnswerRe: Reading Excel (xls+Xlsx) without Excel Interop library or OleDB/Jet? Pin
PIEBALDconsult7-Feb-13 3:50
mvePIEBALDconsult7-Feb-13 3:50 
GeneralRe: Reading Excel (xls+Xlsx) without Excel Interop library or OleDB/Jet? Pin
devvvy7-Feb-13 22:00
devvvy7-Feb-13 22:00 
GeneralRe: Reading Excel (xls+Xlsx) without Excel Interop library or OleDB/Jet? Pin
PIEBALDconsult8-Feb-13 3:48
mvePIEBALDconsult8-Feb-13 3:48 
Questiondata source for a chart Pin
sina rafati nia6-Feb-13 21:26
sina rafati nia6-Feb-13 21:26 
AnswerRe: data source for a chart Pin
Abhinav S6-Feb-13 23:25
Abhinav S6-Feb-13 23:25 
QuestionXelement headers and schema definition help Pin
DJ 26-Feb-13 12:19
DJ 26-Feb-13 12:19 
AnswerRe: Xelement headers and schema definition help Pin
Jibesh6-Feb-13 12:34
professionalJibesh6-Feb-13 12:34 
AnswerRe: Xelement headers and schema definition help Pin
Richard Deeming7-Feb-13 1:33
mveRichard Deeming7-Feb-13 1:33 
Using XElement from System.Xml.Linq:

C#
XNamespace root = "http://website.RFGCommonSpecListingSchema";
XNamespace xs = "http://www.w3.org/2001/XMLSchema";
XNamespace b = "http://schemas.microsoft.com/BizTalk/2003";

var doc = new XDocument(
   new XDeclaration("1.0", "utf-8", null),
   new XElement(xs + "schema",
      new XAttribute("xmlns", root.NamespaceName),
      new XAttribute(XNamespace.Xmlns + "b", b.NamespaceName),
      new XAttribute(XNamespace.Xmlns + "xs", xs.NamespaceName),
      new XAttribute("targetNamespace", "http://rfg.realogy.com/Btt/Listingfeed/Import/2011/07.RFGCommonSpecListingSchema"),
      new XAttribute("elementFormDefault", "qualified"),
      new XAttribute("attributeFormDefault", "unqualified"),
      
      // TODO: Document content goes here...
   )
);




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


QuestionHow to put videos, with alpha channel, on the image Pin
okutan16-Feb-13 7:02
okutan16-Feb-13 7:02 
QuestionCould not evaluate expression Pin
MichCl6-Feb-13 3:16
MichCl6-Feb-13 3:16 
AnswerRe: Could not evaluate expression Pin
Pete O'Hanlon6-Feb-13 4:00
mvePete O'Hanlon6-Feb-13 4:00 
GeneralRe: Could not evaluate expression Pin
Dave Kreskowiak6-Feb-13 4:11
mveDave Kreskowiak6-Feb-13 4:11 
GeneralRe: Could not evaluate expression Pin
MichCl6-Feb-13 4:12
MichCl6-Feb-13 4:12 
GeneralRe: Could not evaluate expression Pin
Pete O'Hanlon6-Feb-13 4:18
mvePete O'Hanlon6-Feb-13 4:18 
GeneralRe: Could not evaluate expression Pin
MichCl6-Feb-13 4:41
MichCl6-Feb-13 4:41 
AnswerRe: Could not evaluate expression Pin
Dave Kreskowiak6-Feb-13 4:10
mveDave Kreskowiak6-Feb-13 4:10 
GeneralRe: Could not evaluate expression Pin
MichCl6-Feb-13 4:20
MichCl6-Feb-13 4:20 
GeneralRe: Could not evaluate expression Pin
Eddy Vluggen6-Feb-13 5:02
professionalEddy Vluggen6-Feb-13 5:02 
GeneralRe: Could not evaluate expression Pin
MichCl6-Feb-13 5:30
MichCl6-Feb-13 5:30 
GeneralRe: Could not evaluate expression Pin
Dave Kreskowiak6-Feb-13 5:40
mveDave Kreskowiak6-Feb-13 5:40 
GeneralRe: Could not evaluate expression Pin
MichCl6-Feb-13 7:30
MichCl6-Feb-13 7:30 
GeneralRe: Could not evaluate expression Pin
Pete O'Hanlon6-Feb-13 5:56
mvePete O'Hanlon6-Feb-13 5:56 
GeneralRe: Could not evaluate expression Pin
MichCl6-Feb-13 7:52
MichCl6-Feb-13 7:52 
GeneralRe: Could not evaluate expression Pin
Dave Kreskowiak6-Feb-13 12:49
mveDave Kreskowiak6-Feb-13 12:49 
GeneralRe: Could not evaluate expression Pin
MichCl7-Feb-13 2:34
MichCl7-Feb-13 2:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.