473,763 Members | 5,610 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Need fast path to VB.NET

I see general messages about how to learn .NET but I have an immediate
requirement to ramp up my old skills very quickly.

Can anyone recommend the FASTEST way for me to get almost-competent in
VB.NET (C# will come later)? This must be an online or book adventure because
I can't totally disappear to attend physical classes.

I have 15 years experience with commercial VB & C development, and I
understand OO & database. I'm looking for a crash course that will jump me
ahead quickly from VB6 (couple-few weeks...?) and not make me slog through
stuff I already know or don't care about for this project.

Cost doesn't matter too much. The limiting factor will be how quickly I can
suck it up. Speed is the key.

Thanks for your advice-
Oct 31 '07 #1
3 2028
There's really two separate (but related) things you need to learn. The
VB.Net language and the .Net framework. I'd say it's more important for you
to focus on learning the .Net framework. You can pick up the basic VB.Net
syntax in a few days. However, all the real meat of your applications (File
I/O, Networking, GUI classes, etc.) is actually handled by the .Net
framework so it's crucial to learn what classes are available and how to
use them.

To learn the language, I recommend Programming Visual Basic .Net, 2nd
edition & VB.Net Language Pocket Reference both published by O'Reilly.

For learning the .Net framework I recommend picking up a decent framework
reference book for the domain you are working in. For example windows
application, web development or mobile device.

With books in hand you'll want to go over the table of contents of all the
books and get familiar with what topics they cover. You'll then want to
read through in depth the introductory chapters which will give you the
overview of .Net development. Follow that up with digging in deeper on the
Visual Basic .Net books to learn the syntax and get a feel for the
language. After that re-read the table of contents and chapter summaries of
the .Net framework books. This time you are trying to take note of what
types of classes are available. You're goal is to be familiar enough with
what is there so that you know where to look quickly when you need to do
something new. For example, you'll know that File I/O was discussed in a
particular book so you can get to it quick. This shouldn't take you more
than a week as you won't be reading the full books, you'll just be
orienting yourself.

At this point you'll have the basic VB.Net syntax down, a basic
understanding of what .Net is and at least an idea of what classes are
available. Now pick something to write. It should be something fairly
complex, but with minimal user interaction. The reason for minimal UI is
because you don't want to waste time writing fluff code dealing with user
input. Coding up button click events and checking input parameters on text
boxes is trivial so you don't want to waste time on it right now. I
recommend you instead focus on a class library of some sort and only use
what GUI is necessary to test the class. For example, when I was learning
C# I chose to implement a basic blowfish encryption library. It was complex
enough that I had to utilize a bunch of different concepts but simple
enough that I didn't get overwhelmed.

This is pretty well exactly the method I took (except C#) and after 2 weeks
I had enough of a grounding to start work on some actual projects at work.
As I moved forward from this point, I followed it up with the in-depth
studying concurrently with actual work. For that I recommend reading
through the Microsoft Certification that are relevant to your job. They do
an excellent job of filling in the gaps in your knowledge that you'll have
from an accelerated regimen like you are going to do.

--
Andrew Faust
andrew[at]andrewfaust.com
http://www.andrewfaust.com
"Jay Vinton" <Ja*******@disc ussions.microso ft.comwrote in message
news:9F******** *************** ***********@mic rosoft.com...
>I see general messages about how to learn .NET but I have an immediate
requirement to ramp up my old skills very quickly.

Can anyone recommend the FASTEST way for me to get almost-competent in
VB.NET (C# will come later)? This must be an online or book adventure
because
I can't totally disappear to attend physical classes.

I have 15 years experience with commercial VB & C development, and I
understand OO & database. I'm looking for a crash course that will jump
me
ahead quickly from VB6 (couple-few weeks...?) and not make me slog
through
stuff I already know or don't care about for this project.

Cost doesn't matter too much. The limiting factor will be how quickly I
can
suck it up. Speed is the key.

Thanks for your advice-
Oct 31 '07 #2

"Jay Vinton" <Ja*******@disc ussions.microso ft.comwrote in message
news:9F******** *************** ***********@mic rosoft.com...
>I see general messages about how to learn .NET but I have an immediate
requirement to ramp up my old skills very quickly.

Can anyone recommend the FASTEST way for me to get almost-competent in
VB.NET (C# will come later)? This must be an online or book adventure
because
I can't totally disappear to attend physical classes.

I have 15 years experience with commercial VB & C development, and I
understand OO & database. I'm looking for a crash course that will jump me
ahead quickly from VB6 (couple-few weeks...?) and not make me slog through
stuff I already know or don't care about for this project.

Cost doesn't matter too much. The limiting factor will be how quickly I
can
suck it up. Speed is the key.
You get the VB.Net book, put the CSLA Framework together, and put the
project together to use the CSLA Framework. It's not about trying to
implement the CSLA Framework, but rather, the usage of the basic objects
and how those objects are being use to produce a solution in VB.Net

If you say you understand OO and database concepts, then you'll say to
yourself, I see what is happening with the basic objects being used, I can
take those basics, I can make my own objects and run with it. You'll see the
power of .Net not only from a Web solution but also from a Windows Desktop
solution standpoint, as they are both using the same objects in the Tracker
Project.

You'll get a crash course real fast. :)

http://www.lhotka.net/Default.aspx

You might want to view the shows.

MODEL-VIEW-PRESENTER

http://www.polymorphicpodcast.com/

click 'Shows'

click 'Design Patterns Bootcamp: Model View * Patterns*

view parts 1-5

You can use Google to get more information about this or find books.

As a matter of fact, you can view all the other shows.

You should be able to find books and articles about MVP.
Oct 31 '07 #3
Thanks to Andrew & Mr. Arnold. for excellent advice. I've been following both
plans and I'm progressing rapidly.
Nov 18 '07 #4

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

Similar topics

2
2094
by: Vinod Menon | last post by:
I downloaded the fast path to db2 course. I am unable to run it as it comes back with the error "There is no audio device available for Hotmedia audio player. This is a result of another media player controlling the audio device. Depending on your configuration, you have to stop all media players, close all browser instances, and try again, or you may have to reboot your machine" I have tried all the approaches that they have outlined...
3
2761
by: rjaw | last post by:
Hi there, using the udb-type2-driver on z/OS DB version 7, we have a problem getting the connection to the database. The small program we use looks like this: Class.forName("com.ibm.db2.jcc.DB2Driver"); Connection connection = DriverManager.getConnection( "jdbc:db2:<database-name>", "<user>", "<password>" );
4
3103
by: Thomas Christmann | last post by:
Hi! First let me apologize for asking this question when there are so many answers to it on Google, but most of them are really contradicting, and making what I want to do very performant is crucial to my project. So, here's what I have: My C programm connects to a database and gets ca. 50-100K domain name/file path pairs. Those pairs have to be cached by my application. Building the cache may take a second or two, but retrieving from...
6
2740
by: ganderso | last post by:
Help!! I need to interrogate about 150,000 files across a WAN and pull in ONLY the files less than 5 days old and larger than 10k bytes. I'm currently using Directory.GetFiles and it's taking hours!! Anyone have any great ideas? Any help will be greatly appreciated. Thanks Greg
4
2194
by: serge | last post by:
I managed to put together C# code and have it do the following: 1- Get all the table names that start with the letter "Z" from sysobjects of my SQL 2000 database and put these table names inside an array variable. 2- Loop through each table name inside the array 1 to 1000 tables
3
1912
by: jesper | last post by:
I would like some feedback on this. A while back I was trying my hand at some pathfinding for a small game I was making. I did not know anything about it so I read some stuff and came up with the code below. I was at the time quite satisfied with it, but reading stuff here has made me doubt it. Is this implementation valid? Is this implementation fast? The member TNode * Spread; I put it in there to
15
3654
by: Gan Quan | last post by:
I'm writing a c++ program that has many (100+) threads read/write files simultaneously. It works well if not considering the efficiency. The file i/o seems to be the bottleneck. This is my code to read from and write to files: #include <fstream> #include <sstream> #include <string>
2
2666
by: robert | last post by:
I want to get the files and sizes and times etc. stats of a dir fast. os.listdir & iterating with os.stat seems not to run at optimal speed for network folders. Is there a faster possibility? (both for Win & *nix ; best platform independent) Robert
46
2534
by: Bruce W. Darby | last post by:
This will be my very first VB.Net application and it's pretty simple. But I've got a snag in my syntax somewhere. Was hoping that someone could point me in the right direction. The history: My work involves creating custom packages of our software product for golf courses that purchase our software. The course data is kept as a back up in the event the course needs us to replace their custom files. Each course has a folder of it's own...
0
9563
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9386
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9997
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9937
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8821
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6642
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5405
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3917
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3522
muto222
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.