473,471 Members | 2,017 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Learning the Fundamentals *without* using Visual Studio

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.
Jun 14 '06 #1
10 1840
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

"Frankie" <A@B.COM> a écrit dans le message de news:
OX**************@TK2MSFTNGP04.phx.gbl...
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.

Jun 14 '06 #2
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


Jun 14 '06 #3
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
(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?


--
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

Jun 14 '06 #4
On Tue, 13 Jun 2006 23:20:45 -0700, Frankie wrote:
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.
Jun 14 '06 #5
Frankie wrote:
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?


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
Jun 14 '06 #6
To add to all the great suggestions you have been given, give C# snippet
compiler a go :)

http://davidhayden.com/blog/dave/arc...05/26/277.aspx
Ollie Riches
"Frankie" <A@B.COM> wrote in message
news:OX**************@TK2MSFTNGP04.phx.gbl...
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.

Jun 14 '06 #7
Frankie <A@B.COM> wrote:
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.


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.

--
Jon Skeet - <sk***@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
Jun 14 '06 #8
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)
"Frankie" <A@B.COM> wrote in message
news:OX**************@TK2MSFTNGP04.phx.gbl...
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.

Jun 14 '06 #9
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

"John Timney (MVP)" <x_****@timney.eclipse.co.uk> schreef in bericht
news:zo********************@eclipse.net.uk...
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)
"Frankie" <A@B.COM> wrote in message
news:OX**************@TK2MSFTNGP04.phx.gbl...
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.


Jun 15 '06 #10
"Frankie" <A@B.COMwrote in message
news:OX**************@TK2MSFTNGP04.phx.gbl...
>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?
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

Jul 4 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: Frankie | last post by:
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...
10
by: arlef | last post by:
Hi Guys, When learning a language such as C#, would you say it is better to learn the fundamentals using the command-line compiler and a simple text editor such as notepad compared to using a...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.