Posted at
The Ardent Dev Blog by derek hatchard (
Go directly to post):
What are the .NET Framework and Visual Basic .NET features that every VB developer
should know? I suggest the following as a starting list (in no particular order):
-
Object-oriented features: classes, objects, constructors, inheritance, interfaces,
polymorphism, methods, overloading
-
Shared (static) Classes and Methods
-
Converting data types and casting objects
-
Manipulating strings and using StringBuilder
-
Basic File I/O (open, read, write)
-
ADO.NET: DataSet, *DataAdapter, *Command, and *DataReader classes
-
Basic XML processing (opening a file/stream and finding an element)
-
Exception handling / Try-Catch blocks
-
Difference between late binding and early binding (and the existence of Option Strict
On)
-
Assemblies, referencing DLLs, and importing namespaces
-
Basic collections (lists, dictionaries, arrays)
-
Security fundamentals (CAS, authentication vs. authorization, validating input)
-
Basics of threading
-
Basics of garbage collection
-
Spitting out data and getting data back (varies with type of application of course)
Comment away! Please don't just say C# (or Ruby)... I'm not looking for
yet another VB vs. C# debate.

Go to post
Posted at
The Ardent Dev Blog by derek hatchard (
Go directly to post):
Last month
I was looking for a tool to automatically announce posts on www.ardentdev.com and www.2signals.com at
my weblogs.asp.net blog. After a modest amount of searching I gave up on finding
a tool that did exactly what I wanted. Tonight I just threw together something
simple. It uses the .Text Simple Blog Service and the RSS.NET
Class Library (with a few minor tweaks). I point the tool at an RSS feed
and select the posts I want to announce. There is a little preview of the announcement
HTML and an easy-to-acquire Announce
button. It's pretty simple at this point (a mere 80 lines of VB code including
whitespace).
I'll gladly share the code if anyone cares.

Go to post
Posted at
The Ardent Dev Blog by derek hatchard (
Go directly to post):
JavaScript is one of those technologies that you can use for years knowing only very little
about it. Do you know what the following <script> block will do?
Post your guess as a comment before you test it out!
<script>
(function()
{
function A() { document.write(A) }
A();
})()
</script>

Go to post