Search Results

-1
votes

LINQ to XML for a small appliction can it replace a small database?

Adding some references to MagicKat's answer: Not very portable, but free and limited - SQL Server 2008 Expres …
0
votes

Why does System.Net.Mail fail where System.Web.Mail works.

It looks like System.Web.Mail is an older, deprecated, mail library. See systemnetmail for details. Use it only if yo …
1
vote

Developing a scheduled task for Windows

If you go the Log File way, you can still use Console.WriteLine("blah");. The trick is to redirect the standard Out and Error streams: …
2
votes

High speed graphing control for .NET (or MFC)?

DirectX used to have .NET bindings (not sure about current version). It includes support for high-performan …
7
votes

Best Server-side .Net PDF editing library

Have a look at iTextSharp. iTextSharp is a port of the iText , a free Java …
0
votes

Java Lucene integration with .Net

SearchBlackBox Luca.Net is a commercial Apache Lucene compatible full-text search API for .NET. …
0
votes

Reading from file not fast enough, how would I speed it up?

The loop and StringBuilder may be redundant; Try using ReadToEnd. …
0
votes

Should I agree to ban the “using” directive from my c# projects?

The Law of Demeter says you should use only one dot: For many modern object oriented languag …
1
vote

Charts in webpages

Look no further then the current site - it uses flot t …
-1
votes

Can I Format A String Like A Number in .NET?

To control string format of a number for display in an ASP.NET Gridview or another control, you can wrap your item in a helper class for display purposes: public class PhoneDisplay …
0
votes

Free .NET Windows Controls Library?

Mono WinForms lags behind Microsoft, but includes many of the familiar controls. If you are ready to try something different, Mono …
1
vote

Custom Sorting Of A Bound DataGridView

Try binding to a DataView, not a DataTable, e.g.: private void SortByTwoColumns() { DataView myDataView = DataTable1.DefaultView; myDataView.Sort = "State, Z …
1
vote

Java System.currentTimeMillis() equivalent in C#

Here is a simple way to approximate the Unix timestamp. Using UTC is closer to the unix concept, and you need to covert from double to long. TimeSpan ts = …
0
votes

Modifying Excel spreadsheet with .NET

Have a look at Excel Web Access, which is part of Excel Services in MOSS, a server-side version of Excel that lets you calculate and display your Excel information through a Web browse …
4
votes

List major differences between C# and java?

See Comparison of C Sharp and Java. …

1 2 3 4 next
15 30 50 per page