Modern Software Development in Visual Basic.NET:(15 Videos)

"I tried to learn .NET by taking boot camp classes that cost me $6,000. After taking the classes, I discovered tons of free (and very cheap) videos on the internet created by experts in the field. I found the videos to be much better than the classrooms. The videos were presented by Microsoft presenters that knew the material backwards and forwards, and they were much cheaper and better than the classroom teachers. I have spent the last three years organizing and hunting down the videos for my own use and decided that all could benefit by sharing what I found." - Wade Harvey

Click Here for Free 24 hour pass to lynda.com.

I AM VERY EXCITED ABOUT THIS AMAZING NEW DISCOVERY

Over 40,000 Top-Notch Video Tutorials (or 3,452 hours) on Lynda.com

I had stumbled across Lynda.com many times before, but never stopped to try it out. I recently took the plunge and started using Lynda.com to help me improve my javascript skills (See Javascript Essential Training 2007 by Dori Smith). It has revolutionized my understanding of the language! I love the fact that the exercise files allow you to follow along in real time with what the instructor is saying. Learning by doing is an extremely powerful technique. I have to give the site an A+ for both quality and content.

I am planning on using Lynda Videos to help me improve in:

  1. HTML
  2. CSS
  3. Classic ASP
  4. .NET (included in ASP section)
  5. AJAX
  6. Silverlight (in Microsoft Section)
  7. SharePoint (in Microsoft Section)
  8. Web Design
  9. Blogging
  10. SEO
  11. and much more
You can learn more about Lynda.com by watching the 5-minute video at About Lynda.com. If you are only focusing on .NET, you are missing out on the "big picture" and on many of the underlying fundamentals! To be an Ideal Programmer, you need to have the largest knowledge base possible.

JavaScript tutorials



Looking for premium .NET Training Videos? The best premium .NET Videos that I have found are at Learn Visual Studio. Those videos are only about 50 cents per hour, as compared to $25 per hour that other sites charge!

LearnVisualStudio is currently having a 25% off sale ($50 savings) and giving away a free membership to TrainingSpot ($60 value) when LVS Lifetime Membership is purchased.

  

DiscountASP .NET hosting  JavaScript tutorials


Limited Time Offer: Free Lifetime Membership to Progress Monitor ($24.95 value) when you purchase any membership at Learn Visual Studio, Lynda Videos or any hosting account at DiscountASP - just forward order confirmation to harvey007@sbcglobal.net

visual basic .net, vb.net application, vb.net treeview, vb.net controls, vb.net example, vb.net print<br />

This is a 15-part free video tutorial that is entitled "Modern Software Development in Visual Basic.NET. The presenter is Dr. Joe Hummel. Here are just a few of the topics covered in this series: , , , vb.net example, vb.net print.

screenshot form  SAMPLE coding - visual basic .net, vb.net application, vb.net treeview, vb.net controls, vb.net example, vb.net print<br />
Joe Hummel teaches Computer Science at Lake Forest College in Chicago, IL. He has a PhD in Computer Science from the University of California, Irvine. He is excellent at explaining complicated subjects in simple terms.

You can download PPT and Demos .zip for this series.
 

Creative Commons License photo credit: gopal1035
 

 

Modern Software Development in Visual Basic

 

1. Program Execution in the 21st Century
Key Concepts:

A. How a .NET program executes
B. CLR (Common Language Runtime) and Framework Class Library
C. Comparison of the CLR to Java's JVM
D. In 2.0, the registry is no longer used to indicate where the assemblies reside. Instead, a technique that is similar to the PATH verb in DOS is used.
E. The system searches in this order:
..1) the GAC,
..2) in any places indicated by the config file, and
..3) the folder where the executable for the VB program resides is searched.

02/03/2004 Duration: 2 hours and 4 minutes

2. OOP and Class Design
Key Concepts:

A. When we create an object, we are really just creating a variable that has a reference to an object.
B. Comparison of which types in .NET are value types and which are object.
C. garbage collection

02/10/2004 Duration: 1 hour and 58 minutes

3. Working with Classes and Class Libraries
Key Concepts:

A. Classes
B. Class Libraries

02/17/2004 Duration: 1 hour and 53 minutes

4. WinForms: What's New in GUI Development
Key Concepts:

A. GUI

02/26/2004 Duration: 1 hour and 21 minutes

5. Defensive Programming
Key Concepts:

A. Exception handling;
B. Application and class design with exceptions;
C. Assertions;
D. Debugging

03/02/2004 Duration: 1 hour and 30 minutes

6. Databases I: Relational Database Design, SQL, and Stored Procedures
Key Concepts:

A. Basic relational database design;
B. Local databases vs. database servers;
C. Structured Query Language;
D. Stored procedures

03/16/2004 Duration: 1 hour and 30 minutes

7. Databases II: DB Programming with ADO.NET
Key Concepts:

A. Architecture of ADO.NET;
B. ExecuteReader;
C. ExecuteScalar;
D. ExecuteNonquery;
E. DataSets

3/23/2004 Duration: 1 hour and 30 minutes

8. Interfaces
Key Concepts:

A. Contract-based programming and design reuse;
B. Example redesigned data access class with interfaces & factory methods;
C. Implementing interfaces sorting, serialization;
D. More examples: interfaces in the Framework Class Library;
E. Creating your own interfaces

3/31/2004 Duration: 1 hour and 30 minutes

9. Inheritance
Key Concepts:

A. Implementation and design reuse;
B. Example: custom, type-safe collection class;
C. Other examples: WinForms hierarchy, .NET CTS, data structure classes;
D. Creating your own inheritance hierarchy business objects

4/06/2004 Duration: 1 hour and 30 minutes

10. Databases II – Data and Business Tier
Key Concepts:

A. Design decisions;
B. Leave connection open vs. open/close, and the Finalization pattern;
C. Exception handling, Try-Catch-Finally pattern, custom exception class hierarchy;
D. Abstract Factory pattern;
E. Transactions;
F. Data vs. business objects;
G. Multi-tier design

4/15/2004 Duration: 1 hour and 30 minutes

11. Component-Based Programming
Key Concepts:

A. Assemblies, namespaces, DLLs;
B. Assembly resolution;
C. Strong names, version-ing;
D. Deployment;
E. Obfuscation

4/20/2004 Duration: 1 hour and 30 minutes

12. Application Design and Deployment
Key Concepts:

A. Tracing;
B. Configuration files (read-only!);
C. User preferences via object serialization, XML file, or per user settings in .NET;
D. Application designs – Traditional single-user applications, Remote: client-server & multi-tier, Loosely-coupled event & delegate driven;
E. Deployment options: Traditional install-driven, Zero-touch deployment: via IE & App loader

4/28/2004 Duration: 1 hour and 30 minutes

13. Distributed Programming: Remoting vs Web Services
Key Concepts:

A. Remote procedure calls, proxy-stub architecture;
B. Reflection: dynamic loading, instantiation & execution;
C. Remoting;
D. Web services;
E. WebForms

5/4/2004 Duration: 1 hour and 30 minutes

14. Concurrent Programming: Delegates and Multi-threading
Key Concepts:

A. When to use concurrent programming techniques;
B. Delegates;
C. Pure multi-threading;
D. Caution – multi-threading is complicated

5/11/2004 Duration: 1 hour and 30 minutes

15. Software Practices Today: Best Practices and Patterns
Key Concepts:

A. Application blocks;
B. Best practices;
C. Design patterns;
D. UML;
E. Testing, testing, testing;
F. Tools CVS, Nunit, NMake;
G. Working with Visual Studio® on a large, component-based project;
H. eXtreme Programming (XP)

5/18/2004 Duration: 1 hour and 30 minutes

 

Related posts:

  1. Modern Software Development: Architecting .NET Solutions with C# (15 Videos) 15 free one-hour video tutorials on C# by Joe Hummel....
  2. 2-D Game Development: (8 Videos) Computer Game Design, Video Game Jobs, Game Design Program, Game Development Software, Video Game Programming, and More Get a basic understanding of how to create two-dimensional (2-D)...
  3. Game Programming Sudoko using WPF: (5 Videos) Game Programming Suduko wpf, game development software, Video Game Programming, Electronic Sudoku This is a 5-part webcast series on game programming Suduko...
  4. ASP.NET Soup To Nuts – 26 hours of FREE Videos I just finished watching Bill Steele of Microsoft explain ASP.NET...
  5. VB Soup to Nuts:vb.net application, vb.net treeview, vb.net controls, vb.net example, vb.net print 17 FREE One-hour Videos from Microsoft Expert, Ron Cundiff, on...

Related posts brought to you by Yet Another Related Posts Plugin.

Comments

One Response to “Modern Software Development in Visual Basic.NET:(15 Videos)”

Trackbacks

Check out what others are saying about this post...
  1. [...] Soup to Nuts." Some of the topics in this series include: vb.net application, vb.net treeview, vb.net controls, vb.net example, vb.net [...]



Speak Your Mind

Tell us what you're thinking...
and oh, if you want a pic to show with your comment, go get a gravatar!

This blog uses the cross-linker plugin developed by Web-Developers.Net

http://idealprogrammer.com/home/idearcom/public_html/wp-content/plugins/wp-super-cache/