Results 1 to 5 of 5

Thread: .net Download

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2001
    Posts
    1

    Question .net Download

    Hi all

    From where i can download the .net for learning purposes.

    loveneesh

  2. #2
    Banished Cander's Avatar
    Join Date
    Dec 2000
    Location
    Why do you care?
    Posts
    6,913
    From where i can download the .net for learning purposes.
    msdn.microsoft.com.

    Look for the .NET framework SDK. Install it. Its free

    then you can use any text editor to write code.
    Stack Overflow
    See the features of Visual Studio 2010 and C# 4.0: The 10-4 show on Channel9

  3. #3
    Hyperactive Member kleptos's Avatar
    Join Date
    Aug 2001
    Location
    The Dark Carnival
    Posts
    346
    Notepad is king, but dos edit is god.....
    ..::[kleptos]::..
    • Database Administrator (MSSQL 2000)
    • Application Developer (C#)
    • Web Developer (ASP.NET)


  4. #4
    Frenzied Member Shawn N's Avatar
    Join Date
    Dec 2001
    Location
    Houston
    Posts
    1,631
    How would you run the coding?
    Please rate my post.

  5. #5
    Banished Cander's Avatar
    Join Date
    Dec 2000
    Location
    Why do you care?
    Posts
    6,913
    the compiler come with it and is comman line driven.

    vbc.exe

    the command to compile a .vb file written in notepad to an exe would be


    vbc myexe.vb

    and that would create an exe named myexe.exe

    their are other options availble you may need like adding references to the compile, telling it to compile to a dll, etc...

    just run one of these>(not sure which is correct)
    vbc
    vbc /?
    vbc -?

    one of those will show all the options...cant remember which one though so I just showed all the possibilities that it may be..:P
    Stack Overflow
    See the features of Visual Studio 2010 and C# 4.0: The 10-4 show on Channel9

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width