Crystal Report Tutorial [closed] - c#

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am learning to use Crystal Report form in my C# Application. I can't seem to find any good tutorial on the net about it. The ones on MSDN pages looks disorganized to me.
Can anyone provide links to good Tutorial?

If you are totally new to Crystal Reports I would advise you to play a bit with the sample database that is attached to Crystal Reports Xtreme.mdb before you will use Crystal in Visual Studio.
To use CR in your application follow this step by step tutorial:
http://infynet.wordpress.com/2010/10/06/crystal-report-in-c/

I'm putting this answer here, even though I haven't finished reading the document myself. Also, this is for Visual Studio 2005 and I'm not sure if that is the one for which you are looking. According to the copyright on the PDF, this was created by Business Objects. Once I am done reading it entirely, I'll update my own opinion.
http://www.willydev.net/descargas/willydev_deployment_crystal2005.pdf

Related

Alternative to windows console app c# [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Basically, I am creating a text based RPG, however would like to release it once it is done, Is there any alternatives to console app that looks a bit nicer when released for publicity.
Also, what would be the best framework to use if i where to publish a project like this to android orr apple market?
Thanks
You could create a WindowsForms application or even a WPF application where you place a huge TextBox on the form. Set the background-color to black and the fore-color to something you like. This way you "simulate" a console, but you have the advantage of using a forms application. Now you can add little extras to the UI to make it look nicer that just a console.
If you really want to improve design you should consider using WPF. It's from Microsoft too, and you can download Visual Studio Express for WPF.
Actually the VS Express for WPF can be downloaded at:
http://www.microsoft.com/visualstudio/eng/products/visual-studio-express-for-windows-desktop
Good luck :)

Getting started with ASP.NET [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I know C# and I want to start with ASP.NET (I already know how to build websites, using PHP).
I need good resource for ASP.NET (MVC, the latest version).
I have found other qustions, seemiler to mine, but what I want is your recommendations.
The ASP.NET website is a good place to start:
http://www.asp.net/mvc/mvc4
I would recommend reading some documentation, follow some tutorials, and give it a shot.
If you run into any problems, you can always find answers / ask questions on here.
There's nothing better than looking at working code for a non-trivial project to learn something new. I'd highly recommend going through the MVC Music Store tutorial and type in every line by hand to help you remember. By the end you'll have a real good idea of what MVC is and why it's so cool.
Wrox's Beginning ASP.NET 4: in C# and VB is a great book to start with.

Good book for Crystal Reports? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm new to Crystal Reports and was interested in finding out what books would be most helpful. I'm planning on using the Designer as well as integrating Crystal Reports with a .NET C# application.
Anybody have any idea which are the best books for this purpose?
Some suggestions:
Crystal Reports 2008: The Complete Reference (Osborne Complete Reference Series):
http://www.amazon.com/Crystal-Reports-2008-Complete-Reference/dp/0071590986/ref=sr_1_5?ie=UTF8&s=books&qid=1246629337&sr=8-5
Crystal Reports 10: The Complete Reference (Complete Reference Series):
http://www.amazon.com/Crystal-Reports-10-Complete-Reference/dp/0072231661/ref=sr_1_26?ie=UTF8&s=books&qid=1246629400&sr=8-26
Professional Crystal Reports for Visual Studio .NET, 2nd Edition:
http://www.amazon.com/Professional-Crystal-Reports-Visual-Studio/dp/0764557300/ref=sr_1_34?ie=UTF8&s=books&qid=1246629455&sr=8-34
All come highly recommended.
Crystal Reports .NET Programming
By Brian Bischof
I think this is a nice one
Crystal Reports Encyclopedia by Brian Bischof

Best tool to determine code Cyclomatic complexity [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
Can people suggest the best tool to determine the cyclic complexity with in a C# winforms code base.
In Visual Studio I just go to Analyze/Calculate Code Metrics and I get cyclomatic complexity.
3rd party edit
Visual Studio 2015 community edition has it as well
NDepend has a huge number of code analysis and query tools including Cyclomatic Complexity per type and method estimation.
We are using SourceMonitor. It's free, very easy to use and easy to integrate with a CI server.
DevExpress's Refactor Pro does that. It has a free trial, so you may want to give it a shot.
There is a free plugin for Red Gate's .NET Reflector called CodeMetrics that does this.

Does anyone know of a good C# API for Subversion? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm looking to make calls out to a subversion repository, but I would like to write it in C#. Does anyone know of any good libraries?
Have a look at SharpSVN. This is an open-source binding of the Subversion Client API for .Net 2.0 applications.
For example, this library is used by the AnkhSVN Visual Studio Add-In.
I recommend you look at the Tortoise SVN source code.
It is mostly in C++, but since it is all done in VS, it should be easy to wrap up and use much of the code again.
You can also try SubversionSharp if you want less heavy lifting (however it is not yet a stable release, so be cautious).
How about SubversionSharp.

Categories

Resources