Welcome to AddressOf.com
Sign in
|
Join
|
Help
This Blog
Email
Syndication
RSS 2.0
Atom 1.0
Search
Go
Tags
Acropolis
Action Movie Night
ASP.NET
BASIC
ClickOnce
Code Camp
Community Server
DevExpress
DirectX
Geek Gathering
General
Interop
Linq
Macro
Media Center
Mono
My.Vista
Obfuscation
Portable Class Libraries
Presentations
Random
redgate
Silverlight
Tip
Tools
TSQL
User Group
VB
VB6
VBx
VC#
Vista
Visual Studio
Web Services
Windows
Windows Forms
WinRT
WPF
XAML
Xbox
News
Favorite Documents
Where I'll Be
VB Coding Guidelines
Sample Downloads
Tips, Tricks and Code Snippets
Filling Your Toolbox
Quick Links
My Movie Collection
Navigation
Home
Blog
Archives
February 2013 (1)
January 2013 (1)
December 2012 (1)
May 2012 (1)
April 2012 (1)
March 2012 (1)
December 2011 (1)
July 2011 (2)
June 2011 (7)
May 2011 (3)
January 2011 (1)
November 2010 (1)
July 2010 (1)
May 2010 (4)
September 2009 (1)
July 2009 (1)
May 2009 (3)
April 2009 (2)
February 2009 (1)
January 2009 (3)
June 2008 (1)
April 2008 (2)
February 2008 (1)
January 2008 (1)
September 2007 (1)
August 2007 (2)
July 2007 (5)
June 2007 (9)
May 2007 (7)
April 2007 (11)
March 2007 (4)
February 2007 (6)
January 2007 (5)
December 2006 (1)
November 2006 (25)
September 2006 (1)
August 2006 (2)
July 2006 (1)
June 2006 (6)
May 2006 (6)
April 2006 (1)
March 2006 (5)
February 2006 (6)
January 2006 (8)
December 2005 (5)
November 2005 (4)
October 2005 (15)
September 2005 (7)
July 2005 (2)
June 2005 (2)
May 2005 (7)
April 2005 (15)
March 2005 (14)
February 2005 (4)
January 2005 (7)
November 2004 (4)
October 2004 (15)
September 2004 (10)
August 2004 (2)
July 2004 (6)
June 2004 (15)
May 2004 (9)
April 2004 (14)
March 2004 (13)
February 2004 (26)
January 2004 (3)
December 2003 (5)
November 2003 (19)
October 2003 (19)
September 2003 (4)
August 2003 (5)
June 2003 (3)
May 2003 (28)
April 2003 (12)
Blogroll
Adam Nathan
Brad Abrams
Cameron Beccario
Duncan Mackenzie
Eric Smith
Kent Sharkey
Kirk Allen Evans
Paul Vick
Erik Porter
Carl Franklin
Chris Anderson
Chris Brumme
Dave Bettin
Drew Robbins
Ed Kaim
Harry Pierson
James Avery
Jason Bock
Lutz Roeder
Scott Hanselman
Sean Alexander
Reference
Differences Between Visual Basic .NET and Visual C# .NET White Paper
Keywords Compared in Different Languages
Programming Concepts Compared in Different Langauges with Code Examples
Visual Studio Language Equivalents
Overview of Managed/Unmanaged Code Interoperability
Performance Tips and Tricks in .NET Applications
Calling COM Components from .NET Clients
.NET Developer Jump Start Training Sessions
Beyond (COM) Add Reference
May 2003 - Posts
Friday, May 30, 2003 12:15 PM
C# "out" modifier -> HowTo in VB.NET?
Someone on GDN asked a question regarding the out parameter modifier that C# uses and how to do the same thing in VB.NET. Your first guess would probably be to use ByRef , however, ByRef is like ref in C#; so that isn't the answer. The real answer is
Posted by
CorySmith
|
4 Comments
Filed under:
VB
,
VC#
Thursday, May 29, 2003 12:01 PM
Exploring Static variables (VB.NET)
Although I wouldn't recommend using Static variables under normal circumstances, there are times when they come in handy. So, when you do use them, you better be sure you understand what's going on to save you from some potential debugging headaches.
Posted by
CorySmith
|
1 Comments
Filed under:
VB
Saturday, May 24, 2003 3:00 PM
New CodeSmith release!
I'm happy to see that Eric is adding additional support / samples for the VB.NET developers in CodeSmith . Although, it worked with VB.NET code in the past, he's now added more support and code generation samples specifically targetting the VB.NET developer.
Posted by
CorySmith
|
0 Comments
Filed under:
Tools
Wednesday, May 21, 2003 6:52 PM
Windows Application Verifier - Rah Roh! .NET doesn't qualify?
Several people are raving about the Windows Application Verifier. Um... problem. It doesn't appear that the .NET Framework follows the rules specified by the Windows Application Verifier 2.50. I might be using it wrong, so if I am, please let me know.
Posted by
CorySmith
|
6 Comments
Filed under:
Tools
Wednesday, May 21, 2003 5:20 PM
VB.NET Internals Article - 8 out of 9 rating.
For all of those using VB.NET's Microsoft.VisualBasic namespace specific functionality (or those just interested in the topic) and the performance impact they may incur (if any, and if so, under what conditions) be sure to check out the Visual Basic .NET
Posted by
CorySmith
|
4 Comments
Filed under:
VB
Monday, May 19, 2003 5:02 PM
Using CR and LF: The Options. (VB.NET)
After posting a response to a question on GDN about using CR and LF in a VB.NET project. The question was how to insert a LF or CR into a string in VB.NET without using the vbLF, vbCR or even the Environment.LineFeed values. They were also thinking that
Posted by
CorySmith
|
2 Comments
Filed under:
VB
Wednesday, May 14, 2003 3:21 AM
Community Starter Kit
Tonight I've been playing around with the community starter kit available for download at the ASP.NET . Although pretty basic in overall features, it's an excellent start for a full blown web site. It took me a minute to get my head around
Posted by
CorySmith
|
12 Comments
Monday, May 12, 2003 12:35 PM
Sunscreen?
While this post has nothing to do with development, it is something that affects all of us. Well, at least those that pull them selves away from their computer or game console long enough to notice that there is a really large yellow star really
Posted by
CorySmith
|
17 Comments
Friday, May 09, 2003 10:16 AM
Tip: Interop Structures - To String or to Char(), that is the question.
The following is from Adam Nathan's CLR FAQ discussing why you would use char arrays instead of strings when using Interop. If your using Interop, this is something very, very important. I've converted the code in the text to
Posted by
CorySmith
|
0 Comments
Thursday, May 08, 2003 11:36 PM
Color your console output using VB.NET!
I'm working on adding an articles section here on AddressOf.com . Using Shawn A. Van Ness's blog and an article on CodeProject.com (both in C# of course); I've put together an article on how to set the console color (foreground and background) using
Posted by
CorySmith
|
3 Comments
Thursday, May 08, 2003 8:20 PM
Simple minimal windowless NotifyIcon sample
I happened across a sample that Shawn A. Van Ness posted showing a minimilistic demonstartion of a windowless NotifyIcon sample. It was written in C#, so I figured I'd go ahead and translate it for VB.NET users. Download the NotifyIcon
Posted by
CorySmith
|
0 Comments
Thursday, May 08, 2003 6:20 PM
Convert System.Array containing Int16 values to an Byte array?
There's got to be an easier way to do this. FileStream only allows you to use a Byte array when reading/writing. I've got a COM object that gives me an array of Int16 values formatted as a System.Array. I need to convert this to an array
Posted by
CorySmith
|
2 Comments
Thursday, May 08, 2003 6:07 PM
Tip: Read/Write Structures using FileStream
Although VB.NET includes support for the VB6 style file FreeFile, Open, Get, Put, Close, etc. functions; they are rediculously slower than using FileStream (or even their VB6 counterparts - which is really strange) for large (1 mb+) files. The other,
Posted by
CorySmith
|
7 Comments
Thursday, May 08, 2003 12:45 PM
Don Box considers VB.NET? :-)
An interested soundbyte by Don Box about VB.NET and the VB.NET team. I'm also writing a lot of code again, primarily in C# but I've been tempted to use VB for something. The VB.NET team is actually writing parts of their product using their own language.
Posted by
CorySmith
|
2 Comments
Wednesday, May 07, 2003 3:08 PM
Chris Brumme discusses Asynchronous Operations
"One thing we tried to do with the CLR and FX is provide a consistent asynchronous programming model." Chris Brumme starting off his blog entry. He discusses several options for asynchronous operations and goes on to discuss each one
Posted by
CorySmith
|
18 Comments
Wednesday, May 07, 2003 1:37 PM
Tip: Read Only Property via Interface - Read Write via Class.
Question: How do I implement a read only property of an interface implementation but allow the same property to be read write when accessing the property through the class directly? Public Interface IInterface ReadOnly Property AProperty()
Posted by
CorySmith
|
0 Comments
Tuesday, May 06, 2003 12:40 PM
Dr. GUI has "got the blog bug"!
Here's a blog to definatly add to your watch list. Dr. GUI's Bits and Bytes . [edit] OK, so I'm not the only one that has noticed this. Some interesting comments have been posted by Julia Lerman and Chris Sells on their respective blogs.
Posted by
CorySmith
|
0 Comments
Tuesday, May 06, 2003 12:30 PM
HDTV and the antenna question
OK, so this isn't .NET related, but I think it's important enough to pass on this HDTV tip. I noticed a blog entry by Sean Alexander discussing his frustration of having to pay about $500 for an antenna to get HDTV. I have to first point
Posted by
CorySmith
|
3 Comments
Monday, May 05, 2003 11:42 AM
Tip: Simple Comparer for sorting in VB.NET
Here's a simple routine to sort a collection of objects posted by Jan Tielens . Dim customers As New ArrayList 'Or you can use the Sort method of the strong typed collection, 'inheriting from CollectionBase. customers.Sort( New SimpleComparer("Name"))
Posted by
CorySmith
|
8 Comments
Saturday, May 03, 2003 11:16 AM
Tip: Use ILDASM for more than viewing IL
Here's a tip I came across on GDN. Basically, you can use ILDASM to extract all of the resources from an assembly (in addition to the IL code). A specific example would be to extract all of the icons from the VS.NET IDE. To do this,
Posted by
CorySmith
|
1 Comments
Friday, May 02, 2003 11:39 PM
MSDN TV - Resource Management with the CLR
Want to know a little bit about how the GC works and how to use the IDisposable pattern? Instead of reading about it, watch the show . If you have something to say about it, Brad Abrams (Microsoft) would like to hear what you have to think
Posted by
CorySmith
|
0 Comments
Friday, May 02, 2003 11:34 PM
Official Microsoft Smart Devices Developer Community site
First there was GotDotNet and ASP.NET . Then there was WindowsForms.com . Now there's a Smart Devices Developer Community from Microsoft. :-) One article of interest is the Writing Mobile Games Using the Microsoft .NET Compact Framework
Posted by
CorySmith
|
2 Comments
Friday, May 02, 2003 4:57 PM
Tip: Convert VS.NET 2003 projects to VS.NET 2002
Code Project has a simple (but very useful) project that will convert your VS.NET 2003 projects to VS.NET 2002. Not only is there a simple project for this, the article associated with the project explains what steps are required if you need to
Posted by
CorySmith
|
0 Comments
Friday, May 02, 2003 1:40 AM
VB.NET - C# - VS.NET tutorials and walkthroughs.
Here are a couple of links to help people get started using VS.NET and VB.NET/C#. Several people on the GDN messageboards have expressed that they are having a hard time finding resources to learn from without having to purchase a book.
Posted by
CorySmith
|
1 Comments
Thursday, May 01, 2003 8:34 PM
Terminator 3 Extreme Edition DVD includes HD WMV version!
I'm going that have to pick this up. I have to say that I've very impressed with the quality of the WMV HD format. According to Sean Alexander , it will be " nearly three and a half times the resolution of standard DVD video "!
Posted by
CorySmith
|
2 Comments
Thursday, May 01, 2003 8:30 PM
VS.NET Macro - Region Marker
This is a pretty useful macro to add to the IDE. It allows you to mark a region of your code, activate this macro and it will enclose the marked area in a #region block. Sub OutlineSelection() Dim objTextDoc As TextDocument Dim title
Posted by
CorySmith
|
4 Comments
Thursday, May 01, 2003 2:08 PM
Microsoft's Community Support
Stephen Swienton (the VP of FWDNUG ) writes an outstanding praise for Microsoft commitment to supporting the Microsoft developer community in Fort Worth, TX. I agree completely :-) Chad Osgood chimes in to mention that Microsoft offers the
Posted by
CorySmith
|
5 Comments
Thursday, May 01, 2003 12:00 PM
Shared Memory Wrapper for .NET
Richard Blewett has put together a shared memory component written in C# that uses Win32 Interop that allows you to use shared memory to pass serialized types and object graphs. He writes: I've created a wrapper for named shared memory that was
Posted by
CorySmith
|
9 Comments