Search Results

4
votes
4answers
866 views

Printing ServerReport without Preview

I have a SQLServer 2005 Reporting Services ServerReport deployed and frequently used by my Winforms app (Framework 2.0) via the ReportViewer control. What I need is to provide a one-click …
1
vote
2answers
323 views

How to take a screenshot and send by email programaticly on dotnet

Background: I'm developing a bussiness application, and in the final stages we are encountering some extrange errors, mostly with connection and some edge use cases. …
2
votes

Collection Editor at runtime

from codeproject article [http://www.codeproject.com/KB/cs/dzcollectioneditor.aspx][1] T …
8
votes

When is Winforms the correct choice vs. WPF?

Consider WPF if interface design is important to you, because WPF can deliver better UI experience. But Winforms has on it's side the years of evolution, so it's proven to work and you can find man …
4
votes

Printing ServerReport without Preview

Ok, Finally figured out. check this link: Printing Reporting Se …
2
votes

Class library with service references

When you add a service reference, Visual Studio generates a proxy for you, which reads the app.config file for the url of the service. You have the option to provide static URL wich does no …
0
votes

Simple HelloWorld build script

Some times this error is because the build server does not have the sdk installed. Try installing the windows sdk. You can download it on the …
1
vote

Need some help sorting out a major abstract pattern headache within my DAL

If I understand correctly you need a way to include some method on child classes, but not in all. If you can group the extra methods you need, you could use an interface, implement it, and …