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

Get 5 Hours of FREE PREMIUM Videos:

LearnVisualStudio.NET Free Preview


LearnVisualStudio.NET Free Preview: Declaring Variables and Assigning Values

I am a lifetime member of LearnVisualStudio.net and a Premium Plus member of dotNetVideos.net.

LearnVisualStudio.net is awesome because it grows in value each year as more videos are added.

dotNetVideos.net is also great because it focuses a lot on MS Certifications and practical interview questions.


- Wade Harvey (IdealProgrammer.com)

LearnVisualStudio Premium Videos

Visual C# 2010 for Absolute Beginners C# for Absolute Beginners C# for Absolute Beginners Study Guide Visual Basic for Absolute Beginners
Visual Basic Express Edition Study Guide Visual Basic 9.0 Language Enhancements Entity Framework Linq To Sql
Windows Phone 7 Development Unit Testing ASP.NET MVC 3 (In Progress) ASP.NET MVC Hands On Project
ASP.NET For Absolute Beginners Visual Web Developer C# Study Guide Visual Web Developer VB.NET Study Guide ASP.NET Controls Series
ASP.NET AJAX ASP.NET Architecture Series ASP.NET Server Controls Silverlight 4.0
Windows Presentation Foundation Windows Forms Controls Visual Studio 2010 New Features Visual Studio Team System 2008
Visual Studio Team System Features Getting Started With Sql Server Express Edition


dotNetVideos Premium Video Catalog

Interview Questions & Answers Windows AzureASP.NET MVC 4Windows Phone 7 (3 Videos)
Visual Studio 2011 Application Lifecycle ManagementLightSwitchHTML 5SOLID
Visual Studio Add-OnsVisual Studio 2010 ALM Lab ManagementASP.NET 4 Deep Dive Microsoft Enterprise Library 5 with ASP.NET 4 (10 Videos)
Virtualization Techniques for Developer (5 Videos)Test Series - 70-519: Designing and Developing Web Applications Using Microsoft .NET Framework 4 (20+ Videos)Test Series - 70-519: Supplemental
70-513: Test Series (MCTS) Windows Communication Foundation 4 (20+ Videos)70-515:Web Applications Development with Microsoft .NET Framework 4 (20+ Videos)Test Series - 70-516: Accessing Data with Microsoft .NET Framework 4 (20+ Videos)Test Series: 70-432: Microsoft SQL Server 2008, Implementation and Maintenance (20+ Videos)
Test Series: 70-433: SQL Server AdministrationFrom Novice To Professional - C# (25 Videos)From Novice To Professional - VB.NET (25 Videos)




Premium (Not Free) Video Tutorials

Free Video Tutorials & Free Tools

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. ASP.NET Soup To Nuts – 26 hours of FREE Videos I just finished watching Bill Steele of Microsoft explain ASP.NET...
  2. 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...
  3. SQL Server 2005 Express Tutorial: (13 Videos) Database mirroring, backup sql server 2005, sql server 2005 replication, sql server standard edition, download sql server 2005, compare sql server, sql server instance Excellent SQL Server 2005 Express series of 13 free videos...
  4. PHP Video Tutorial – 1 – Installing Software In this first video, we will look at how to...
  5. Architecting Desktop Applications with 2.0 – 15 Free Video Tutorials "Architecting Modern Desktop Applications in.NET" is a 15-part 25+ hour...

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

Comments

7 Responses to “Modern Software Development in Visual Basic.NET:(15 Videos)”
  1. inuyashabatusai says:

    The video links are not working. Please fix it. Thank you.

  2. inuyashabatusa,

    Thanks for your comment. The links are working fine for me. You may have to register with Microsoft for free to watch video, and I did have to install ACELP audio codec to get it to work. Also, you must use internet explorer, as it does not work in firefox.

    Thanks,
    Wade

  3. video sample downloads says:

    The link for ppt and demos is broken. :(
    http://alt.pluralsight.com/drjoe/webcasts/webcasts.aspx

  4. Thanks for letting me know about the broken link to the source code and demos. I have fixed it now, and here it is: http://pluralsight-free.s3.amazonaws.com/joe-hummel/webcasts/default.html

  5. good work. keep it up.

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!

Powered by WP Hashcash

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