-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
Once again, in this series of posts I look at the parts of the .NET Framework that may seem trivial, but can help improve your code by making it easier to write and maintain. The index of all my past little wonders posts can be found here. Today I’m giving a brief beginner’s guide to LINQ and Lambdas…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi
I have the data coming from Entity Data model table on my ASP.NET page.
Now I have to export this data into Excel on button click.
If it is using OLEDB, it is straight forward as it is here: http://csharp.net-informations.com/excel/csharp-excel-oledb-insert.htm
Here is my function to read data…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I need some help cropping and resizing images using CSharp.net. My goal here is to take an image and reduce it to 50px by 50px. The following code I found here will do that, however it's scaling the image as well. Ideally I want to scale the image down to as close to 50px by 50px as possible and then…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
There is plenty of information out there concerning WCF clients and the fact that you cannot simply rely on a using statement to dispose of the client. This is because the Close method can throw an exception (i.e. if the server hosting the service doesn't respond).
I've done my best to implement…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello to stackoverflow members! This
is my first post but I love reading
the questions and answers on this
forum!
I'm using VS2008, CSharp, NET 3.5 and
Windows XP Pro latest patches on this
project.
I am reading in a jpeg file to a
bitmap image using CSharp in the
following…
>>> More