Search Results

2
votes

Creating a Word doc in C#.NET

Schmidty, if you want to generate Word documents on a web server you will need a licence for each client (not just the web server). See this section in the first …
2
votes

Why is .NET exception not caught by try/catch block?

Could you be dealing with an exception which doesn't derive from System.Exception? If so see this MSDN article. …
1
vote

How do I use C# to get the Hard-disk serial number?

Try the code here and let us know if it works. EDIT: And if that doesn't work, try …
1
vote

Add HTML 5 doctype to XDocument (.NET)

You don't get the space if you write to an XmlTextWriter: XDocument doc = new XDocument(); doc.AddFirst(new XDocumentType("html", null, null, null)); doc.Add …