Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Windows Forms / WinForm General / July 2006

Tip: Looking for answers? Try searching our database.

Learning the Fundamentals *without* using Visual Studio

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Frankie - 14 Jun 2006 07:20 GMT
I am looking for tutorials, articles, etc that can help to enlighten me on
what's "really going on" or what's required to create a .NET application
(particularly Windows Forms) WITHOUT the use of Visual Studio. I understand
that VS does a lot of things for us, but I want to know what those things
are - and do them manually - just for the didactic benefit.

Any recommendations?

Thanks!

FWIW: Yes, I have googled this and have found plenty of step-by-step
tutorials, but they all make use of Visual Studio and drag-dropping
controls. That's not what I'm looking for.
Bruno Jouhier - 14 Jun 2006 07:42 GMT
Maybe you can use Visual Studio to create a simple application, then close
VS and inspect the files that have been created with your favorite text
editor (source files, project files, resource files, etc.). Making sense out
of these files should not be too difficult and you can play and make changes
with your text editor, and compile with the command line compiler (csc.exe
for C#). But I would not start by trying to type everything from scratch in
a text editor.

Bruno

>I am looking for tutorials, articles, etc that can help to enlighten me on
>what's "really going on" or what's required to create a .NET application
[quoted text clipped - 9 lines]
> tutorials, but they all make use of Visual Studio and drag-dropping
> controls. That's not what I'm looking for.
Cor Ligthert [MVP] - 14 Jun 2006 08:09 GMT
Frankie,

>I am looking for tutorials, articles, etc that can help to enlighten me on
>what's "really going on" or what's required to create a .NET application
>(particularly Windows Forms) WITHOUT the use of Visual Studio. I understand
>that VS does a lot of things for us, but I want to know what those things
>are - and do them manually - just for the didactic benefit.

That does probably not help you in your goal. The program languages used are
all to create in fact DLL/Exe which contain CLI code, that will be
translated by the Net framework to the by the OS or whatever you name that
used code.

If you want to learn more about the framework than a book about the general
approach would help you better.

Probably will a search on google with text as "understanding the net
framework" bring you quicker by the goal that you did describe.

Just my thought,

Cor
Michael Nemtsev - 14 Jun 2006 08:23 GMT
Why not to download .NET SDK in this case?
You can use SDK Help, notepad and command line csc.exe to buld you app.
No using VS at all.

> I am looking for tutorials, articles, etc that can help to enlighten me on
> what's "really going on" or what's required to create a .NET application
[quoted text clipped - 3 lines]
>
> Any recommendations?

Signature

WBR,
Michael  Nemtsev :: blog: http://spaces.msn.com/laflour 

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche

Mehdi - 14 Jun 2006 09:35 GMT
> I am looking for tutorials, articles, etc that can help to enlighten me on
> what's "really going on" or what's required to create a .NET application
> (particularly Windows Forms) WITHOUT the use of Visual Studio. I understand
> that VS does a lot of things for us, but I want to know what those things
> are - and do them manually - just for the didactic benefit.

VS really doesn't do much. Whenever you create a new Window Form
application, VS add a new class deriving from Form to the project, adds a
Main method to this class to act as the entry point for the application and
that's it. When you add a button to the form, VS addds a private button
member variable to the class, instanciate it in the constructor, set its
properties and adds it to the Form's Controls collection. You can have a
look at the generated code and you'll see that there isn't much at all and
that nothing is mysterious.

If you are already confortable with C#, you should be able to do it
yourself without any problems. If you're not, i'd suggest using VS to
develop your first application to get used to the C# syntax and the .NET
Framwork. Once you'll be familiar with that, the code generated by VS will
no longer be a mystery for you and you'll be able to develop an application
without using VS with the eyes closed.

If you reallly insist on learning whithout VS, i think that i heard of a
book that taught how to create window form applications by hand. It might
be one of the Charles Petzold books. You could check it out in your local
book store.
Markus - 14 Jun 2006 10:10 GMT
> I am looking for tutorials, articles, etc that can help to enlighten
> me on what's "really going on" or what's required to create a .NET
[quoted text clipped - 4 lines]
>
> Any recommendations?

For a general better understanding: Have a look at Sharp Develop
(http://www.icsharpcode.net/OpenSource/SD/), a free (open source) IDE.
Even though this also supports the most of the Drag and Drop stuff, but
if it comes to include Interop Assemblies etc. then some manual steps
are required and you really start to understand, what's going on and
what's needed.

For only having a look at a Windows-Forms App, then simply fire up
notepad, type in everything manual, something like this:
class MyForm : Form
{
  static void Main(string[] args)
  {
    new MyForm().Show();
  }
}
And add some controls and functionality... there isn't really something
special in a Windows Forms, what is done with all the drag and drop stuff...

Markus
Ollie Riches - 14 Jun 2006 16:19 GMT
To add to all the great suggestions you have been given, give C# snippet
compiler a go :)

http://davidhayden.com/blog/dave/archive/2004/05/26/277.aspx

Ollie Riches

>I am looking for tutorials, articles, etc that can help to enlighten me on
>what's "really going on" or what's required to create a .NET application
[quoted text clipped - 9 lines]
> tutorials, but they all make use of Visual Studio and drag-dropping
> controls. That's not what I'm looking for.
Jon Skeet [C# MVP] - 14 Jun 2006 18:16 GMT
> I am looking for tutorials, articles, etc that can help to enlighten me on
> what's "really going on" or what's required to create a .NET application
[quoted text clipped - 9 lines]
> tutorials, but they all make use of Visual Studio and drag-dropping
> controls. That's not what I'm looking for.

I would suggest still using Visual Studio, but avoiding the designers.
That way you don't need to worry about the *building* side of things,
and can concentrate on the language itself (and the libraries) - but
without leaning on the VS designer as a crutch.

Signature

Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet   Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

John Timney (MVP) - 14 Jun 2006 22:42 GMT
Use the SDK.  That'll have your head buzzing for a few days while you get
the hang of things, but once you know how to code without VS.net you'll be
streets ahead of the competition when you start using an IDE.

Regards

John Timney (MVP)

>I am looking for tutorials, articles, etc that can help to enlighten me on
>what's "really going on" or what's required to create a .NET application
[quoted text clipped - 9 lines]
> tutorials, but they all make use of Visual Studio and drag-dropping
> controls. That's not what I'm looking for.
Cor Ligthert [MVP] - 15 Jun 2006 07:47 GMT
John,

I found that idea from Michael Nemtsev to use the SDK as well the best idea
in this thread to get a first view on it. Better than my idea, although I
still then would try to get an overview on Net first.

Cor

> Use the SDK.  That'll have your head buzzing for a few days while you get
> the hang of things, but once you know how to code without VS.net you'll be
[quoted text clipped - 17 lines]
>> tutorials, but they all make use of Visual Studio and drag-dropping
>> controls. That's not what I'm looking for.
timseal - 04 Jul 2006 18:44 GMT
> >>I am looking for tutorials, articles, etc that can help to enlighten me on
> >>what's "really going on" or what's required to create a .NET application
[quoted text clipped - 3 lines]
> >>
> >> Any recommendations?

I have the same desires.  Somebody mentioned the Petzold book, I've
glanced at it in the shop and it does look to be worth buying.
http://www.charlespetzold.com/winforms/

The code added by VS.NET leaves a bad taste in my mouth.  Not easily
maintainable, either.

Tim

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.