It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to create a chart using C#.
It works fine when I create a view of it.
But can someone tell me how to put this chart into an excel file?
I'm using nHibernate and ninject for my MVC3 application.
In the past I've used the OpenXML SDK from MS. I'd start there.
http://msdn.microsoft.com/en-us/library/hh180830.aspx#odc_Office14_ta_GenerateExcelWorkbookswithOpenXMLSDK20_Introduction
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is it possible to use google map API in windows metro style app using C# and XAML ?
It's very possible. Use JSON or REST Services entailed in the Google MAP API. With those you can do just about any platform. Please state what you've tried, and be more specific in the future.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm looking at generating web-documents at runtime. This means generating the html, and JavaScript and css. Are there any advanced libraries? Or am I going to be going at by creating the html document with File.Create("Default.aspx") and then lots of HtmlTextWriter.WriteBlaBlaBla()
Your business requirement seems unclear but try using HTMLtextwriter to have more control over your code
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
PLease advise the library to work with these two types of.
I need one library
NetOffice works quite well in C#.
Microsoft.Office.Excel or Microsoft.Office.Interop
For XSLX you can work with OpenXML but it's a lot of work. The advantage is you don't need to have Office installed for it to work.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I wish to design my own control in C# for visual studio.I have followed the link Create Custom Control and would like to see some more which involves making control from scratch
A simple search on StackOverflow and Google are a great place to start.
If you are wanting to create a control that handles its own rendering, you may want to look into using the objects in the System.Drawing namespace (namely System.Drawing.Graphics).
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have task in my project,I want to develop a help file(f1) for my project,i dont have any idea how can i achieve this task please help any one.
You can create some HTML pages and then convert them into a CHM file , When user press F1 , try to open it , That all you should do
Good Luck