Visual Studio Development Bookmark and Share   
 index > Visual C# Express Edition > The Answers for The common questions in this forum
 

The Answers for The common questions in this forum

Q: Where can i find C# Tutorials online?

 you may find some resources and usefull links  in this thread

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=212562&SiteID=1

if you found a nice tutorial online you can share it with us

beside MSDN which has many usefull articles

Hope this helps

 

shakalama  Wednesday, May 24, 2006 8:33 PM
Q : when i write a program does my client have to have .net Framework? \ can't i write independent program without asking my clients to download .net Frameworks?

A : No

actualy you don't write program from scratch in .net framework you use (FCL)Framework Class Libraries , and engine

so your project will not run untill you provide the engine and the supportive libraries ,

as well as the programs that made with java need JVM to be running on your computer , the programs that youwill write inVB.net need .net framworks to be running on your system

best regards

shakalama  Wednesday, May 24, 2006 8:35 PM

Q : My Project doesn't save!! , When i run my application i can edit my database but when i stop debugging i find my database records still the same with no changes?

A: Actualy you have 2 databases not one

the origional one in the project folder (that you see in your IDE)

the secondone in your projectFolder/bin/debug folder , its just for testing

every time you run your application the testing database will be replaced by fresh copy from the origional one so every time you debug you lose the previous changes

so you have some options to be able to see your database changes

1) see your changes in the database that lies in debug folder not the one in your project folder

2) select your database in your solution explorer and go to properties tab >> copy to output folder property >> select copy if newer

like that you stop the new copy every time you run your project , so willb be able to see your previous changes as long as you didn't change your database design, but still can't see the changes in the origional database in your solution explorer , the changes have been make to the copy in the debug folder

hope this helps

shakalama  Wednesday, May 24, 2006 8:41 PM
Q: what are the express versionlimitations, compared to other versions?

A: you can find the answer here

http://msdn.microsoft.com/vstudio/products/compare/default.aspx

hope this helps

shakalama  Wednesday, May 24, 2006 8:42 PM

Q : My project take too much Resources (RAM's) Is that logic? , i have developed small applicationbut it take lots or computerram?

A : i was wondering too about this, i used to answer this question like this minmize your application and maxmize it again and see the difference , and i used to think there are some sort of memory leakingor something like this , tilli found this article and it told me exactly what's going on

http://www.itwriting.com/dotnetmem.php

hope this helps

shakalama  Wednesday, May 24, 2006 8:46 PM

Q: is it possible to do Reporting in visual C#  Express Edition?

A: unfortunatly V C# EE (IDE) doesn't support Crystal Reports and dosn't support Add-ins. so that you can't add reporting tool to your IDE .

there is a reason for that , reporting is a profesionals work but EE IDE meant to be a light weight version for students only , if you want this ability you can upgrade to higher version of visual studio,

but there are some ways to do reporting for learning purpose not for professionals work, so you will find most of them not trivial thing and inconvenient so you can't depend on them for production

Best regards

shakalama  Wednesday, May 24, 2006 8:53 PM
Q : is there a way to add Chart to my Form? or i want to Draw my OWn chart?

A : you can take a look to those links it have a good examples and a simple tutorial

  1. Samples and tutorial for how to do it
  2. Nplot is a free chartinglibrary for .netyou can find Nplot documentationhere
  3. there are also some samples in registeration benefits portal page you canuse them but first you have to register yourEE copy also look for the license( its not free to distripute) but you can take them as guide for you
  4. you can use MSChar.ocx library
  5. to draw them yourself

hope this helps

shakalama  Wednesday, May 24, 2006 9:08 PM

hi,

Just an idea! Will it be a good idea to make this as a comment and post it as announcement, so that the people in this forum can monitor this thread and also append new faq's for C#? IF you think it is a better idea, then please make it as an announcement, so that we can point newbies to this thread for reference.

Thank you,
Bhanu.

Bhanu Prakash Nunna - MSFT  Friday, May 26, 2006 9:27 PM

Q: How do I create a setup project for my C# application?

The only supported setup mechanism within the Express Editions is ClickOnce which allows you to deploy your application to a web server or be distributed via CD or disk as well as support automatic updating after it is in the hands of users.

While ClickOnce is good for most simple applications and installations it does not provide the same level of control that you have with standard Visual Studio created Setup projects that are available in Visual Studio 2005 Standard Edition or higher. In cases where more control is needed it can be a good idea to build ones own setup program externally of Express with free products such as:

Brendan Grant  Wednesday, June 21, 2006 7:29 PM

You can use google to search for other answers

Custom Search

More Threads

• PictureBox / Form.Controls Issue
• check if process is running
• My first attempt at an XNA C# game and in need of help
• Quick save TMP files keep popping next to my cs files.
• how to increase my app versioin
• linking to help
• Encrypt to Md5 or Sha1
• Delete first row in a table with code
• Labels
• formatting console app's output