Archive for the ‘Video Training’ Category

Object Oriented VB.NET

home top left Object Oriented VB.NET

This series explains the basic concepts of Object Oriented programming and explains how Visual Basic.NET syntax required to implement OO concepts.

The following videos are available for this series:

Understanding Classes and Objects
This lengthy video explains the parts of a class, which is the basic building block used in every VB.NET application. Classes have properties and methods, contructors and destructors, and methods can be overloaded. This video starts you out at the very basics of all these concepts, which are more thoroughly explained in future videos in this series. Also, I build a small application that uses a class and step through the code to demonstrate the order of events when creating an instance of an object for your applications.
Creating Methods
This video goes into more depth about methods, such as what private and public means, overloading methods, and returning values or creating void methods that return nothing.
Understanding Overloaded Methods
This video demonstrates the use of overloaded methods with a small application. The code is stepped through and thoroughly explained.
Constructors and Destructors
Constructors are the rough equivilent of the Initialize event in VB6 classes, but with the added ability to be overloaded. The is no true equivilent to the Terminate event in VB6 classes, which is deterministic … in other words, in VB6 you know exactly when the object was being unloaded from memory. However, due to garbage collection in VB.NET, finalization in in-deterministic … you don’t REALLY know when an object is being unloaded from memory, therefore you must adopt new practices for object “clean-up”. This video discusses constructors and the finalize method in classes, as well as a common convention to be used before setting a object reference to nothing.
Creating and Referencing Assemblies
This video demonstrates how to create a class library, which is an assembly compiled into a DLL that can be referenced from other projects. It is the rough equivilent to creating a COM+ component in VB6. Obviously, there is a significant difference in COM+ and .NET, but the idea for our purposes here is that you can have a component that contains classes for use in other projects. This video demonstrates how to create such a class library, then use it from a consuming application. Explains the Add Reference dialog.
Understanding Namespaces
Namespaces allow you to remove ambiguity between components that may have the same classes and same file name. This video shows how to set the root namespace, as well as how to create sub-level namespaces. Additionally, it shows what happens when you use the Imports keyword, and most importantly what happens when there is a naming conflict.
Inheritance Basics
Inheritance was available in VB6 in a limited form (i.e., interface inheritance), but is more fully realized in VB.NET (i.e., implementation or “code” inheritance). This video shows the basics of how inheritance works, and sets the stage for many future videos on this vital topic.
Inheritance Basics
Inheritance Basics
Polymorphism Basics
Polymorphism Basics
Favor Composition Over Inheritance
Favor Composition Over Inheritance
Find What Varies and Encapsulate It
Find What Varies and Encapsulate It
Strategy Design Pattern
Strategy Design Pattern
Interface Basics
Interface Basics
Program to Interfaces and not to Implementations
Program to Interfaces and not to Implementations
Abstract Factory Design Pattern
Abstract Factory Design Pattern
More About Scoping and Interfaces
More About Scoping and Interfaces
GRASP: High Cohesion
GRASP: High Cohesion
GRASP: Low Coupling
GRASP: Low Coupling
GRASP: Controller
GRASP: Controller
GRASP: Expert
GRASP: Expert
GRASP: Creator
GRASP: Creator
GRASP: Pure Fabrication
GRASP: Pure Fabrication
GRASP: Indirection
GRASP: Indirection
GRASP: Dont Talk to Strangers
GRASP: Dont Talk to Strangers
Model-View Seperation Pattern
Model-View Seperation Pattern
GoF Creation Patterns: Singleton
GoF Creation Patterns: Singleton
GoF Creation Patterns: Builder
GoF Creation Patterns: Builder
GoF Creation Patterns: Prototype
GoF Creation Patterns: Prototype
GoF Structural Patterns: Adapter
GoF Structural Patterns: Adapter
GoF Structural Patterns: Bridge
GoF Structural Patterns: Bridge
GoF Structural Patterns: Composite
GoF Structural Patterns: Composite
GoF Structural Patterns: Decorator
GoF Structural Patterns: Decorator
GoF Structural Patterns: Facade
GoF Structural Patterns: Facade
GoF Structural Patterns: Flyweight
GoF Structural Patterns: Flyweight
GoF Behavioral Patterns: Chain of Responsibility
GoF Behavioral Patterns: Chain of Responsibility
GoF Structural Patterns: Proxy
GoF Structural Patterns: Proxy
GoF Behavioral Patterns: Command
GoF Behavioral Patterns: Command
GoF Behavioral Patterns: Interpreter
GoF Behavioral Patterns: Interpreter
GoF Behavioral Patterns: Iterator
GoF Behavioral Patterns: Iterator
VB.NET Delegate Basics
Delegates are object oriented function pointers allowing you to handle callbacks and events.
XML Object Serialization
Demonstrates how to serialize objects to an XML file, then how to deserialize the XML back to a new instance of an object.

Home: http://www.learnvisualstudio.net/content/series/object_oriented_vbdotnet.aspx

Link Download>

:
object_oriented_vbdotnet.rar.004

http://rapidshare.com/files/219936836/object_oriented_vbdotnet.rar.004

object_oriented_vbdotnet.rar.005

http://rapidshare.com/files/219937896/object_oriented_vbdotnet.rar.005

object_oriented_vbdotnet.rar.006

http://rapidshare.com/files/219938881/object_oriented_vbdotnet.rar.006

object_oriented_vbdotnet.rar.007

http://rapidshare.com/files/219939876/object_oriented_vbdotnet.rar.007

object_oriented_vbdotnet.rar.008

http://rapidshare.com/files/219939894/object_oriented_vbdotnet.rar.008

object_oriented_vbdotnet.rar.001

http://rapidshare.com/files/219940872/object_oriented_vbdotnet.rar.001

object_oriented_vbdotnet.rar.002

http://rapidshare.com/files/219941859/object_oriented_vbdotnet.rar.002

object_oriented_vbdotnet.rar.003

http://rapidshare.com/files/219942894/object_oriented_vbdotnet.rar.003

Join files with hjsplit
pass: booktraining.net

IDE Proficiency Series for Visual Studio.NET

home top left IDE Proficiency Series for Visual Studio.NET
Home: http://www.learnvisualstudio.net/content/series/ide_proficiency_series_for_visual_studiodotnet_2003.aspx

This series will walk the beginner through the Visual Studio.NET 2003 interface and provides lots of helpful tips and tricks on getting the most out of your coding experience. These videos highlight why Visual Studio.NET 2003 is one of the most advanced code editing environments available today.

The following videos are available for this series:

Overview of the IDE
This video is an introduction to working with Visual Studio.NET and highlights how to work with the Start Page and with the tabbed environment of the main area within the IDE.
Working with Windows
This video demonstrates how to work with fixed and auto-hide windows within the IDE. Auto-hide windows provide a means of saving “screen real estate” by sliding in and out from a given side of the IDE. Additionally, it demonstrates how to navigate through tabbed areas when windows are hidden and more.
Working with Toolbars
This video shows you how to customize your IDE to show or hide toolbars, dock them in different positions, modify the icons in existing toolbars, and creating your own toolbars filled with the functionality you use most.
Creating, Opening and Closing a Project
Creating projects is one of the most fundamental first steps in Visual Studio. This video thoroughly explains options in the New Project dialog which is used to create project templates that will get you started quickly by creating a project with in Visual Studio.NET. It also discusses how to open and close a project.
Understanding Solutions and Projects
This video explains the relationship between Solutions and Projects in Visual Studio.NET and walks you through the contents of both project and solution files to enable a better understanding.
Adding a Project to a Solution
This video demonstrates how to create a blank Solution, then add projects to the solution file.
File Management within Projects
This video goes into greater depth about adding new or existing files to a project, add folders, rename, delete and exlude files. It also explains why you sometimes see faded icons in the Solution Explorer.
Setting Project Properties
This video walks you through several of the most important properties that can be set at a project level.
Setting IDE Properties
This video walks you through several of the most important properties that can be set to customize the Visual Studio.NET IDE.
Effective Code Window Techniques
This video covers topics like Intellisense, code line numbers, keyboard shortcuts, dynamic help, regions and more tips that will help you navigate through your code quickly and efficiently.
Effective Debugging Techniques
This video shows the fundamentals of setting a simple breakpoint and stepping through code. It shows how to use the Step Into, Step Over and Step Out features, how to determine the values in variables while in break mode, and more. It also demonstrates some more advanced uses of breakpoints like setting conditions and setting hit count. Also, it explains functionality of the Breakpoint window. Debugging skills: don’t leave home without it!
Effective Tasklist Techniques
Details how to utilize the Tasklist window to save time and find reminders of ToDos, Bugs, Unfinished code, bookmarks, and more. Also describes how to create your own Tasklist Monikers.
Searching through your Code
This video shows you several ways to search through code to find and replace code.
Using the Server Explorer
This video demonstrates how to use the Server Explorer to manage the servers in your environment. It focuses particularly on how to connect to databases, create new databases, manage tables, stored procedures, views and database diagrams all with the use of the Server Explorer’s built in SQL Server management console.
Utilizing Help
This video highlights the many forms of help available to you in Visual Studio.NET and how to effectively locate exactly what you are looking for.

Link Download>

:
ide_proficiency_series_for_visual_studiodotnet_2003.rar.002

http://rapidshare.com/files/219927700/ide_proficiency_series_for_visual_studiodotnet_2003.rar.002

ide_proficiency_series_for_visual_studiodotnet_2003.rar.003

http://rapidshare.com/files/219928819/ide_proficiency_series_for_visual_studiodotnet_2003.rar.003

ide_proficiency_series_for_visual_studiodotnet_2003.rar.004

http://rapidshare.com/files/219929989/ide_proficiency_series_for_visual_studiodotnet_2003.rar.004

ide_proficiency_series_for_visual_studiodotnet_2003.rar.005

http://rapidshare.com/files/219931132/ide_proficiency_series_for_visual_studiodotnet_2003.rar.005

ide_proficiency_series_for_visual_studiodotnet_2003.rar.006

http://rapidshare.com/files/219932382/ide_proficiency_series_for_visual_studiodotnet_2003.rar.006

ide_proficiency_series_for_visual_studiodotnet_2003.rar.007

http://rapidshare.com/files/219933529/ide_proficiency_series_for_visual_studiodotnet_2003.rar.007

ide_proficiency_series_for_visual_studiodotnet_2003.rar.008

http://rapidshare.com/files/219934661/ide_proficiency_series_for_visual_studiodotnet_2003.rar.008

ide_proficiency_series_for_visual_studiodotnet_2003.rar.001

http://rapidshare.com/files/219935727/ide_proficiency_series_for_visual_studiodotnet_2003.rar.001

Password default : shytex.com

Teracom Training Institute: Understanding Networking 1

ee6378c9000c4e45me Teracom Training Institute: Understanding Networking 1
Teracom Training Institute: Understanding Networking 1 | 1,3 GB

Trainer: Eric Coll | Certification is included | For Windows
Get up to speed and fill the gaps on telecom, datacom, networking, IP, MPLS, Voice over IP and wireless at your own pace. Teracom�s DVD video training courses are high-quality multimedia productions featuring the instructor, extensive animated graphics and point-by-point bullets. Like private lessons from the Director of the Institute! Our top instructor Eric Coll talks to you directly via the camera, using his vast experience and acclaimed ability to explain key concepts, mainstream technologies and how it all fits together – in plain English.

Our goal is to bust the buzzwords, explain the jargon and instill structured understanding – knowledge that lasts a lifetime. Plus, every course comes with a comprehensive workbook with copies of all graphics and detailed reference notes, sure to be a valuable reference for years to come.
Download>

links:
http://rapidshare.com/files/221031326/Telecom320_.part10.rar
http://rapidshare.com/files/221031243/Telecom320_.part07.rar
http://rapidshare.com/files/221031228/Telecom320_.part01.rar
http://rapidshare.com/files/221031190/Telecom320_.part06.rar
http://rapidshare.com/files/221031145/Telecom320_.part03.rar
http://rapidshare.com/files/221031123/Telecom320_.part02.rar
http://rapidshare.com/files/221031101/Telecom320_.part11.rar
http://rapidshare.com/files/221031086/Telecom320_.part04.rar
http://rapidshare.com/files/221030850/Telecom320_.part12.rar
http://rapidshare.com/files/221030777/Telecom320_.part08.rar
http://rapidshare.com/files/221030757/Telecom320_.part09.rar
http://rapidshare.com/files/221030751/Telecom320_.part05.rar
http://rapidshare.com/files/221030426/Telecom320_.part13.rar

Password default : shytex.com

Discover CPanel Video-Training with Chris Morris And Bob Jenkins

a9ba9088000c56c2me Discover CPanel Video Training with Chris Morris And Bob Jenkins
Discover CPanel Video-Training with Chris Morris And Bob Jenkins [Tutorial] | 350 MB

You should be comfortable with doing the main jobs needed to run your websites. If you learn these skills, you�ll avoid paying too much to any person or service provider either now or when you decide to outsource later. So here are the 14 skills you really need to learn so you don�t get ripped off by a web hosting company or webmaster.

* Create and manage your own email account **
* Registering your own domains **
* Set up your web hosting account properly **
* Upload and manage your website files and images **
* Redirect users to different URLs
* Install a blog, forum, Wiki�s and more, with Fantastico
* Customize your 404 Error Pages **

* Create and manage SQL Databases
* Add on multiple domains within one hosting account **
* Protect your directories from unauthorized snoopers **
* Create and manage Subdomains
* Track your site visitors and errors with Statistics
* Set up and manage Resell Rights products and sales pages for maximum profit
* Install a PHP/MySQL Script properly
(** designates skills you ABSOLUTELY must know how to do)

This list of tasks may seem very daunting to you. However, once you learn them, you�ll save a ton of money.

Each of our videos, including the free ones we�ll be giving you now, all include�
* Easy to understand, live narration by Chris Morris or Bob Jenkins (American English speakers) � two genuine internet marketers who�ve made it their mission to help people from the start.
* Clear video resolution so you don�t have to guess what�s being shown (sensitive data is obscured)
* Strategic explanations of how to use the cPanel� features for marketing purposes, not just technical prowess
* Creative combinations of the different features within cPanel� so you can apply what you learn to move your business forward.

We also feature an extensive members area where you�ll find additional resources for internet business building. Whether you market information products, or you want to get your website more traffic to promote offline products, these tools and resources are an extra benefit others simply can�t (or refuse to) provide to you.

Link Download>

:
booktraining.net__DISCOVER.CPANEL.VIDEO.TUTORIALS-HELL.part1.rar

http://rapidshare.com/files/221110053/booktraining.net__DISCOVER.CPANEL.VIDEO.TUTORIALS-HELL.part1.rar

booktraining.net__DISCOVER.CPANEL.VIDEO.TUTORIALS-HELL.part2.rar

http://rapidshare.com/files/221110021/booktraining.net__DISCOVER.CPANEL.VIDEO.TUTORIALS-HELL.part2.rar

booktraining.net__DISCOVER.CPANEL.VIDEO.TUTORIALS-HELL.part3.rar

http://rapidshare.com/files/221110002/booktraining.net__DISCOVER.CPANEL.VIDEO.TUTORIALS-HELL.part3.rar

Password default : shytex.com

Video lesson: creating a site on the engine DLE

c24a071000c5613me Video lesson: creating a site on the engine DLE
Video lesson: creating a site on the engine DLE | 29 MB
The authors of the lesson: Kosyanenko Dmitry and Yuriy Pak
The text reads: Dmitry Baburin (pronunciation)
Duration: 19 min. 12 sec.
Description:
Video, which explains all the principles of creating a site on the engine DLE (DataLife Engine).

Link: http://uploading.com/files/OC0QW4WV/booktraining.net__dle.mp4.html

Password default : shytex.com

C++ video tutorial

cppvideoseries2db C++ video tutorial

What the series will cover:

* Basic C++
* OOP
* Loops
* Methods/Functions
* Decision statements
* Output
* Input
* Includes
* Inheritance
* Encapsulation
* Polymorphism
* Classes
* Objects
* Pointers
* And finally, windows programming

Topics in this tutorial:

* Functions
* Variables
* Constants
* Math operations
* Operator Precedence

http://rapidshare.com/files/182981880/booktraining.net_csvidtut1.wmv
http://rapidshare.com/files/182981901/booktraining.net_cppvidtut2.wmv
http://rapidshare.com/files/182981985/booktraining.net_security1.swf
http://rapidshare.com/files/182981994/booktraining.net_photoshop1.wmv
http://rapidshare.com/files/182981845/booktraining.net_cppvidtut1.wmv
http://rapidshare.com/files/182981775/booktraining.net_text_20styles_20tutorials.zip

Password default : shytex.com

CompTIA Security+ VTC Training CD

51bzyx10snl 206x300 CompTIA Security+ VTC Training CD

Publisher: Virtual Training Company Inc
Number Of Pages: 92
Publication Date: 2004-12
ISBN-10 / ASIN: 1932808337
ISBN-13 / EAN: 9781932808339
Binding: CD-ROM

Download>

http://rapidshare.com/files/142996130/comptia_security_plus_-__vtc.part2.rar
http://rapidshare.com/files/142996300/comptia_security_plus_-__vtc.part1.rar


C Programming 2007 Tutorials [reupload]

 C Programming 2007 Tutorials [reupload]

* Never has it been so easy to learn C Programming 2007.

* No expensive classroom training courses.
* No boring hard to follow books to read.
* Learn from your own desk at a pace that suits you.
* High quality affordable training that is easy to use and follow.
* Use our unique training method, it makes learning easy no matter what your learning style.

Download>

:

http://rapidshare.com/files/95285454/cfe-vtccp2007.part1.rar

http://rapidshare.com/files/95285441/cfe-vtccp2007.part2.rar

http://rapidshare.com/files/95285427/cfe-vtccp2007.part3.rar

Pass: www.babeschannel.org

VTC Course – Ableton Live 6 (Tutorials / Training Course)

vtctuts VTC Course   Ableton Live 6 (Tutorials / Training Course)

Steven Smith, “VTC Course – Ableton Live 6 (Tutorials / Training Course)”
SKU: 33831 | ISBN: 1934743380 | Duration: 8 hrs / 96 lessons | *.MOV | 367MB
Compatibility: Vista, XP, NT, 2000, 98, Mac OS9, Mac X 10.1+

Ableton Live is a powerful “sequencing instrument” designed for each stage of the musical process, from creation to production to performance. In the creative stage, Live is intuitive and responsive, encouraging the flow of musical ideas. During production, Live provides all of the professional tools required to complete and perfect projects. On stage, Live delivers unique expressive control and stability. This VTC tutorial approaches the instruction of Ableton Live 6 with the emphasis on getting the most out of its unique ways of creating and producing music. Detailed information is provided on all major components with an in-depth look into the main features new to version 6. Many lessons utilize Live 6?s included demo songs, allowing users to easily follow along. From Warp Modes, Launch Modes, Follow Actions and Recording to Sampler, Racks, MIDI Control and More. To begin learning today, simply click on one of the Ableton Live 6 lessons.

Download>

:

RapidShare:
http://rapidshare.com/files/124405728/VTC.Ableton.Live.6-ARCHiTEX.part1.rar

http://rapidshare.com/files/124413824/VTC.Ableton.Live.6-ARCHiTEX.part2.rar

http://rapidshare.com/files/124421210/VTC.Ableton.Live.6-ARCHiTEX.part3.rar

http://rapidshare.com/files/124464470/VTC.Ableton.Live.6-ARCHiTEX.part4.rar

http://rapidshare.com/files/124475150/VTC.Ableton.Live.6-ARCHiTEX.part5.rar

http://rapidshare.com/files/124392879/VTC.Ableton.Live.6-ARCHiTEX.part6.rar

Password default : shytex.com