Jump to content
Xtreme .Net Talk

mosad2

Members
  • Posts

    10
  • Joined

  • Last visited

Personal Information

  • .NET Preferred Language
    c#

mosad2's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. while deploying ur project VS.NET gives u the option to associate files types with ur App. through the File Types Editor
  2. hi guys i wanna get myself started with asp.net currently i finished the 70-316 part of the mcad/mcsd " developing windows based apps" now i wanna move to the 70-315 asp.net web apps so what's the best books that i can learn the basics from b4 getting into the exam guides? i have beginning ASP.NET with C# by wrox press and Programming microsoft ASP.NEt by MS Press what do u think and do u have any recommendations? if u know a better book pls point it out thank u guys
  3. http://forums.devarticles.com/archive/t-940
  4. hi Guys how r u all doing? Guys i always face an error whenever i try to create a web app or web service within my VS.NET i attached a PrintScreen of that error so someone can help knowing that my OS is Windows Server 2003 untitled.zip
  5. i have it installed i have windows 2003 server standard edition! so what can i do?
  6. hi guys i have a wierd problem whenever i try to create a asp.net web form it first tells me that its creating the application then it comes up with this error then it gives two choices whether i wanna retry using a diff. file share path or try to open the project with front page extension if i choosed any i get back to the same error! how can i get over this???
  7. hi guys i just wanna know ur opinions about the best book to learn C# from i got C# how to program but it's written in damn way i wanna another book to make me digest the basics of OOP and web application some one told me it's C# the complete reference another opinion was beginning C#.net by wrox other said C# in 21 days so what do u think?? even if u know a site that's informative post it thank ya guys
  8. hi guys i dont know what's going on when i write my code and try to build and excute it it give me errors i try the same code from the source codes of the book i study from it gives an error but it can be excuted! so anybody tells me why???? same codes one can be excuted and the other cant be:(
  9. using System; using System.Windows.Forms; namespace ConsoleApplication4 { /// <summary> /// Summary description for Class1. /// </summary> class Class1 { /// <summary> /// The main entry point for the application. /// </summary> /// [sTAThread] static void Main(string[] args) { // // TODO: Add code to start application here // int[] n = { 3, 4, 6, 8, 10, 9, 15}; string output = "" ; output += "element\tsubscript\thistogram\t"; for (int i=0; i < n.Lenght ; i++) output += i +"\t" + n[ i ] + "\t"; for (int j=1; j < n[i] ; j++) output += "*"; MessageBox.Show ( output,"histogram" , MessageBoxButtons.ok, MessageBoxIcon.Information ); } } } hi guys would anyone point out why this simple console doesnt compile??? i dont know what's wrong?:(
×
×
  • Create New...