.NET blogs
Showing blogs 41-60 (out of 71)
Posted by
Andy Brown on 13 January 2012 | no comments
In order to work efficiently with files and folders you first need to create a FileSystemObject. This blog explains how to do this!
Posted by
Andy Brown on 03 January 2012 | no comments
Did you know that you can create and manage references from within VBA code? This article gives you ideas on how to do just that.
Posted by
Andy Brown on 09 December 2011 | 1 comment
Although it's usually easiest to create references to other applications using
Tools -> References as described in an
earlier blog, you can use the method shown in this blog instead.
Posted by
Andy Brown on 05 December 2011 | 5 comments
Even if you're writing Visual Basic macros within Excel, there's nothing to stop you inserting text into Word documents, manipulating PowerPoint slides or sending Outlook emails. This blog explains how to reference other applications, and write macros in Excel to link to other Microsoft Office software
Posted by
Andy Brown on 29 November 2011 | no comments
What happens when your macros go wrong? That depends what error-handling you have in place. Learn how to use ON ERROR and other commands to trap errors in a structured way.
Posted by
Andy Brown on 25 November 2011 | no comments
This series of blogs is intended to provide online training in how to debug in Visual Basic for Applications, including using breakpoints and the immediate window.
Posted by
Andy Brown on 22 November 2011 | 2 comments
Want to do something when a user opens a workbook, or stop them clicking on a particular cell? You need to learn how to attach code to Excel workbook or worksheet events!
Posted by
Andy Brown on 15 November 2011 | 5 comments
There are 4 types of loop in Visual Basic for Applications - this blog shows how and when to use each type of VBA loop structure.
Posted by
Andy Brown on 15 November 2011 | no comments
This part of the Excel VBA training series of blogs shows how to use IF / ELSE / END IF within VBA, and also how to use the alternative SELECT / CASE syntax within macros.
Posted by
Andy Brown on 09 November 2011 | 8 comments
Visual Basic for Applications (VBA) is what's called an object-orientated programming language. This blog explains what this means!
Posted by
Andy Brown on 10 October 2011 | 8 comments
If you're beginning .NET application development with a clean slate, you'll need to choose a programming language. VB or C#? This opinionated blog gives you some guidance!
Posted by
Andy Brown on 10 October 2011 | 2 comments
ASP.NET is great at server-side processing, but how can you refer to ASP.NET web server controls at the client? The answer is to use the new(ish) ClientIdMode property to fix the controls' names.
Posted by
Andy Brown on 03 October 2011 | 1 comment
The InputBox function in Visual Basic for Applications allows you to get - as the name suggests - input from the user. This blog shows how to use it!
Posted by
Andy Brown on 28 September 2011 | 2 comments
The MsgBox command in Visual Basic for Applications allows you to display basic messages, but you can also make it prettier, and even use it to ask questions or display multiple-line messages! Read on to find out more about this versatile VBA command.
Posted by
Andy Brown on 19 September 2011 | no comments
With the introduction of the ListView data control in ASP.NET 3.5, there are now 4 separate tools for displaying multiple rows of data in ASP.NET. Which one is best - GridView, Repeater, DataList or ListView?
Posted by
Andy Brown on 05 September 2011 | 4 comments
This blog explains the nuts and bolts of Excel VBA variables, including how to declare them, how to set their scope and all sorts of other tips and tricks. The blog also covers constants in Excel macros.
Posted by
Andy Brown on 24 August 2011 | no comments
There are a bewildering array (excuse the pun) of data storage structures available to you in Visual Basic. Choose from arrays, ArrayLists, SortedLists, Dictionaries, HashTables, Lists and DataTables, among others. This blog gives an example of each type of structure, and benchmarks them to show which perform best and worst.
Posted by
Andy Brown on 16 August 2011 | 4 comments
Use this free online training in Excel Visual Basic for Applications (VBA) to learn how to program macros within Excel. The tutorial covers everything from basic recording through to creating classes - something for everyone!
Posted by
Andy Brown on 16 August 2011 | no comments
This blog shows the various techniques within Excel Visual Basic for moving around and selecting cells relative to the active cell or selection. The blog includes a discussion of the Offset, End, Resize, Range, EntireRow, EntireColumn and CurrentRegion methods.
Posted by
Andy Brown on 11 August 2011 | no comments
This blog gives the various possible ways to select cells, ranges, columns and rows using Visual Basic for Applications in Excel. Useful for the VBA newbie, but even gurus might find one or two commands they'd missed!