https://www.developerfusion.com/t/vb6/tutorials/ VB 6 Tutorials & Articles from Developer Fusion 2012-07-31T08:27:00.00Z http://www.developerfusion.com/article/145371/an-internal-application-message-bus-in-vbnet/ An Internal Application Message Bus in VB.Net 2012-07-31T08:27:00.00Z Working with threads gets complicated quickly as you work to stop them falling over each other. One way to organise threads so that they co-operate without tripping over each other is to use a messaging mechanism to communicate between them. John Rivett-Carnac looks at one such implementation of internal application messaging. John Rivett-Carnac http://www.developerfusion.com/article/84521/prototypes/ Prototypes in JavaScript 2010-06-28T21:14:00.00Z Ian Elliot reveals another gem in the JavaScript collection, and how to use its prototype feature Ian Elliot http://www.developerfusion.com/article/9576/the-future-of-net-languages/ The Future of .NET Languages 2009-01-09T16:37:00.00Z Wondered why Microsoft always seems to release different language features for each language? Discover how .NET 4.0 will reduce the disparity between C# and VB.NET with some great new features for both languages, plus a new dynamic language runtime and new functional and parallel programming languages. Damon Armstrong http://www.developerfusion.com/article/7556/new-c-30-language-features/ New C# 3.0 Language Features 2008-02-28T21:26:00.00Z Learn about some of the new features in C# 3.0 including automatic properties, collection initializers, extension methods, lambda expressions and anonymous types. Scott Guthrie http://www.developerfusion.com/article/7087/have-you-seen-the-silverlight/ Have you seen the Silverlight? 2007-09-17T20:49:00.00Z So you want fancy, sexy streaming media in the UI? And you want cool animations, fancy glow-in-the-dark buttons and decent, scalable vector graphics? And you want to run your application in a browser on both Windows and Mac OSX? If you’re already reaching for your copy of How to Wow with Flash, stop. There’s a new kid muscling onto the somewhat crowded Rich Interactive Application (RIA) block, and it’s coming from Microsoft. Dave Wheeler http://www.developerfusion.com/article/84364/custom-combo-in-visual-basic-2005/ Custom Combo in Visual Basic 2005 2006-05-31T00:00:00.00Z If you miss the Drive ComboBox control that used to be in VB6, the good news is that it's easy to create your own in VB 2005 Ian Elliot http://www.developerfusion.com/article/5071/creating-applications-for-handheld-devices-using-embedded-visual-basic/ Creating Applications for Handheld Devices Using eMbedded Visual Basic 2006-02-17T11:37:00.00Z A no nonsense tutorial designed to give Visual Basic developers an insight into developing VB applications for handheld devices such as PDAs. Rob Bickel http://www.developerfusion.com/article/5385/highperformance-net-application-development-architecture/ High-Performance .NET Application Development & Architecture 2006-02-15T15:25:00.00Z This article demonstrates the art of creating and architecting high-performance and scalable .NET applications, covering all stages, from planning to development and their perspective best practices. Dimitrios Markatos http://www.developerfusion.com/article/5379/visual-basic-60-how-to-create-a-slide-menu/ Visual Basic 6.0 - How to create a Slide Menu 2006-02-14T19:17:00.00Z Visual Basic 6.0 - How to create a Slide Menu. The first is a bare-bones approach and second example is focused on layout and design. conwayjd http://www.developerfusion.com/article/5371/visual-basic-60-exporting-a-datareport-to-microsoft-word/ Visual Basic 6.0 - Exporting a DataReport to Microsoft Word 2006-02-11T00:32:00.00Z This article is a simple yet effective way to export a DataReport to MIcrosoft Word using the DataEnvironment and DataReport. This walk-through starts with creating a simple database in Microsoft Access and then creating a User Interface in Visual Basic 6.0. conwayjd http://www.developerfusion.com/article/5292/datagridgridview-paging-and-sorting-using-a-datareader/ DataGrid/GridView Paging and Sorting Using A DataReader 2006-01-26T15:07:00.00Z This article will demonstrate two ways one could implement the DataReader to bind a DataGrid, that includes caching, paging and persistent bi-directional sorting, all without the use of a DataAdapter/DataSet at all, and includes ASP.NET 2.0 GridView version! Dimitrios Markatos http://www.developerfusion.com/article/5184/multithreading-in-vbnet/ Multithreading in VB.NET 2006-01-09T22:32:00.00Z Multithreading, a very powerful technique, is essential for modern software development. Software users expect to work with a very responsive program that they don’t have to wait on, which is a very reasonable demand with the processor speeds that are currently available. Enter multithreading. This article shows you how. John Spano http://www.developerfusion.com/article/5091/generate-thumbnail-images-from-pdf-documents-in-net/ Generate Thumbnail Images from PDF Documents in .NET 2005-12-21T15:12:00.00Z This article presents VB.NET code to create thumbnail images from a directory of Adobe Acrobat PDF documents using the .NET Framework. Jonathan Hodgson http://www.developerfusion.com/article/5046/number-systems/ Number Systems 2005-12-16T00:48:00.00Z Most programmers are aware of a few number systems. Decimal, Binary, Octal, etc. VB.NET allows you to work with these number systems, but these alone. What about Duodecimal, Quinquevigesimal, or Roman Numerals? A proof of concept article. Mitch ★ http://www.developerfusion.com/article/4665/collection-controls-with-rich-design-time-support/ Collection Controls with Rich Design Time Support 2005-02-09T17:41:00.00Z This extensive article details the process of creating complex list-based controls with rich design time support similar to my DotNetWidgets and OutlookBar controls. Tim Dawson http://www.developerfusion.com/article/4278/using-adonet-with-sql-server/ Using ADO.NET with SQL Server 2004-02-16T15:41:00.00Z An extensive examination of using ADO.NET to access SQL Server databases, from establishing connections and executing stored procedures, to connection pools, data readers and data sets. James Crowley http://www.developerfusion.com/article/4403/make-your-classic-asp-code-work-like-in-aspnet/ Make your Classic ASP code work like in ASP.NET 2004-02-15T08:37:00.00Z Developing in Classic ASP using the same technics as in ASP.NET?. If you have to work in Classic ASP, why don't do it the right way? By using a similar framework not only your code will be more organized and efficient, but it will take you a fraction of the time to port to ASP.NET! Christian Calderon http://www.developerfusion.com/article/4411/introduction-to-designers/ Introduction to Designers 2004-02-09T09:19:00.00Z Designers are essential in creating professional controls with polished design time behaviour. This article serves as an introduction to writing your own. Tim Dawson http://www.developerfusion.com/article/4351/hosting-windows-forms-designers/ Hosting Windows Forms Designers 2004-01-27T15:45:00.00Z Shows how to write the code needed to host the Windows Forms Designers in your own application. Sample code is provided to display a form in design mode and allow normal editing like in Visual Studio. Tim Dawson http://www.developerfusion.com/article/4341/the-quick-dirty-net-guide-to-cvb-oop/ The Quick & Dirty .NET Guide to C#/VB OOP 2004-01-26T12:16:00.00Z Although this article won't be an exhaustive OOP treatise, its objective nevertheless is to present in a quick and dirty manner C#/VB Object-Oriented Programming. Moreover, even though this article may be slightly geared more towards C#, all important VB assessments or similarities are addressed and demonstrated. By the way, keep in mind C# is very case sensitive. Incidentally, don't be put off at the length of this article, a lot of it is simply repeated code examples for both languages. Dimitrios Markatos