Results 1 to 14 of 14

Thread: .NET SDK, what is it?

  1. #1

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    .NET SDK, what is it?

    What's the use of .Net SDK? Should it be installed together with the .Net Framework so apps made in .Net will work?
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: .NET SDK, what is it?

    The .NET SDK is the software development kit for .NET. It contains the basic components necessary to create a .NET app, but has nothing to do with running a .NET app. I'm not sure which it is, but Visual Studio either sits on top of the SDK (which is the case I think) or reproduces its functionality, so it is not needed as a seperate component if you have the IDE.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  3. #3

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: .NET SDK, what is it?

    I dont have VS.Net on this computer but I am currently installing .Net SDK, will it provide me with an IDE for developing in .Net?
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  4. #4
    Fanatic Member
    Join Date
    May 2005
    Posts
    898

    Re: .NET SDK, what is it?

    Quote Originally Posted by dee-u
    I dont have VS.Net on this computer but I am currently installing .Net SDK, will it provide me with an IDE for developing in .Net?
    nope. But there's always SharpDevelop, a free open-source IDE for .NET.
    "so just keep in mind that fantasy is not the same as realtiy and make sure u remember that wii sports may be fun but u cant count on it as exercise ok cool bye" - HungarianHuman

  5. #5
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: .NET SDK, what is it?

    The SDK is the libraries needed to build a .NET app. It also comes with the compiler needed to make the assemblies (EXE or DLL). However, it's up to you to create the files and make the project.

    Visual Studio is basicaly a graphical user interface to the SDK. It allows you to create files necessary in a somewhat user friendly manner. It also takes care of the job of invoking the compiler to build the project.

    Tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  6. #6
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: .NET SDK, what is it?

    You can also get the free Borland C# Builder Personal Edition for non-commercial use here.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  7. #7

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: .NET SDK, what is it?

    Quote Originally Posted by grilkip
    nope. But there's always SharpDevelop, a free open-source IDE for .NET.
    Is SharpDevelop intended for C# only? When I tried to import my VB.Net solution it has converted it but when I double-clicked on my command buttons the codes are now gone.
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  8. #8
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: .NET SDK, what is it?

    Quote Originally Posted by jmcilhinney
    You can also get the free Borland C# Builder Personal Edition for non-commercial use here.
    Forget I ever said this. I must have had the impression that I was in a C# forum because of the mention of SharpDevelop. It doesn't take much to confuse me, you know. I think that a big flashing neon sign is needed to tell me where I am, and I don't mean one above my head saying "You are here".
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  9. #9

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: .NET SDK, what is it?

    You could have just deleted that post.
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  10. #10
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: .NET SDK, what is it?

    If you head over to C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322, you'll see a lot of EXEs in there in addition to other files. Over the course of your VB.NET life you will be making use of a few of these, such as csc.exe, vbc.exe (c#,vb.net compilers), wsdl.exe (web proxy class generator) and so on.

  11. #11

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: .NET SDK, what is it?

    Were those files put there when I installed the .Net framework or when I installed the .Net SDK? It seems when I installed .Net SDK a problem of mine about running an app made in .Net was solved.
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  12. #12
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: .NET SDK, what is it?

    That is not the framework folder. The framework folder is accessible through C:/Windows/Assembly (for me, Windows 2003). Those are the common files required for running the .NET apps.

    I am not sure why installing the SDK helped you run your app. Did you get a newer version of the framework with the SDK? As in, was 1.0 installed and then you got 1.1?

  13. #13

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: .NET SDK, what is it?

    I don't really know what did that SDK do...

    BTW, they are both 1.1
    Last edited by dee-u; Aug 10th, 2005 at 12:21 AM.
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  14. #14
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: .NET SDK, what is it?

    IT may be that the newly installed SDK included the SP1 for .NET 1.1. I know that recently I tried running an app written in .NET and it wouldn't work until I installed the SP. I think the SP fixed something in the HTTP/INet communication assembly area.

    Tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

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