Feed Yourself:
Subscribe by Email:
|
|
|
On this page....
Email Us
Archives
| March, 2007 (1) |
| January, 2007 (3) |
| December, 2006 (9) |
| November, 2006 (9) |
| October, 2006 (1) |
| September, 2006 (3) |
| August, 2006 (1) |
| July, 2006 (1) |
| June, 2006 (4) |
| May, 2006 (5) |
| April, 2006 (6) |
| March, 2006 (5) |
| February, 2006 (5) |
| January, 2006 (5) |
| December, 2005 (2) |
Navigation
Categories
Disclaimer
The opinions expressed in this site are those of the individual authors and
do not necessarily represent the official view of Ardent Development nor its employees, subsidiaries, partners,
or customers.
© Copyright 2008, Ardent Development
Powered by: newtelligence dasBlog 1.8.5223.1
|
|
|
|
 Friday, January 06, 2006
|
|
|
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.
Posted by Derek Hatchard 1/6/2006 3:41:18 PM (Atlantic Standard Time, UTC-04:00)
|
|
 Thursday, January 05, 2006
|
|
|
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.

Posted by Derek Hatchard 1/5/2006 12:05:40 AM (Atlantic Standard Time, UTC-04:00)
|
|
 Wednesday, January 04, 2006
|
|
|
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>
Posted by Derek Hatchard 1/4/2006 8:31:50 PM (Atlantic Standard Time, UTC-04:00)
|
|
 Tuesday, December 13, 2005
|
|
|
A regular "feature" we will have here at the Ardent Dev Blog is a series of "Tool I Love / Tool I Hate" posts (kind of like the "What's On Your Hard Drive" column in Queue magazine). A new addition to my tool set is the Venkam JavaScript Debugger for Mozilla. The latest version as of this post was 0.9.85, which would not install for FireFox 1.5. The XPI (add-on package) was hard-coded to a max version of 1.1. Fortunately add-on packages for Mozilla are just Zip files that you can extract and hack pretty easily. Here is how I got Venkman to install with FireFox 1.5:
- Downlowd Venkman 0.9.85.
- Change file extension to .zip and unzip.
- Open install.rdf with your favourite text editor.
- Find <em:maxVersion>1.1</em:maxVersion> and change the maxVersion to 1.5 (or any arbitrary number higher than 1.5 - it might or might not work on future releases of FireFox).
- Save your changes and close your text editor.
- Rezip the files and change the file extension from .zip to .xpi.
- Open the new XPI file in FireFox (using File | Open File menu or just drag-and-drop).
If you are a brave and trusting sort of individual, you can just download my modified XPI here:
Modified venkman-0.9.85.xpi (209.03 KB).
Posted by Derek Hatchard 12/13/2005 3:06:55 PM (Atlantic Standard Time, UTC-04:00)
|
|
 Thursday, December 08, 2005
|
|
|
Welcome to The Ardent Dev Blog (http://www.ardentdev.com/blog). I (Derek) am very lucky to be able to work with a top-notch group of development / IT professionals here at Ardent. I figure it is time to share them a little bit with the rest of the world. From this blog you will hear about the tools and technologies we work with (.NET, C#, VB.NET, ASP.NET, NUnit, NAnt, etc.), our thoughts on software development process / methodology, and perhaps a little about what it is like to work for a small software company.
This blog will be a collective effort but will respect individual voices. Every item will include the name of the author who posted it. I hope you enjoy that format!
A unique feature of this blog is our Ask The Experts page. Send in your technical questions and quandaries. We will do our best to answer your question and post our response to this blog!
If you need more than just a single question answered via a blog, check out our mentoring, training, and consulting services including .NET Experts On Tap.
Posted by Derek Hatchard 12/8/2005 9:43:13 PM (Atlantic Standard Time, UTC-04:00)
|
|
|
|