Wednesday, February 11, 2004

I can subscribe to some dasBlos rss feeds in Sharpreader but not to my own (for testing purposes) and not to a few others (eg. Damir Tomicic). Is anyone subscribing to my feed in SharpReader successfully? The rss looks fine in a plain old browser.

Wednesday, February 11, 2004 6:42:57 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

I have been using reflection for a while to open up forms dynamically and have been past the form properties and form methods hurdle for quite some time. I just had to raise an event from my form that is being loaded dynamically. A quick article by Dino Esposito on VB2theMax made it relatively easy to add this little bit of functionality into my .net quiver. Since I am doing it a bit differently (using a form, rather than a class) here is how I did it. This isn't my exact code, since I have stripped out some other trickery that I don't want to get in the way of what I am trying to show here.

Dim asmAssemblyContainingForm As [Assembly] = [Assembly].LoadFrom(“AssemblyContainingForm.DLL“)

Dim TypeToLoad As Type = asmAssemblyContainingForm.GetType(“assemblynamespace.formclassName")

Dim GenericInstance As Object

GenericInstance = Activator.CreateInstance(TypeToLoad)

Dim f As Form = CType(GenericInstance, Form)

'//here is the event setup

Dim frmEventUpdateTree As System.Reflection.EventInfo

'//“TreeSourceChanged“ is the name of the event being raised from my form

frmEventUpdateTree = TypeToLoad.GetEvent("TreeSourceChanged")

'//create a delegate of the same type as my raised event to a local method  named “SetGetNewTreeTrue“

Dim frmDel As [Delegate] = [Delegate].CreateDelegate(frmEventUpdateTree.EventHandlerType, Me, "SetGetNewTreeTrue")

'//link up my delegate to the dynamic form

frmEventUpdateTree.AddEventHandler(f, frmDel)

Wednesday, February 11, 2004 6:08:37 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Geeze - first it's someone on www.Geekswithblogs.net experimenting with a p_rn (don't want google) rss feed yesterday. Now this afternoon, just coincidentally I get this in my aggregator. I'm not offended or anything, it just seemed kinda funny. I didn't circle Patch your.... on purpose...

Wednesday, February 11, 2004 2:42:43 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
Wednesday, February 11, 2004 2:31:55 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

I just had a great idea from reading someone other people's blogs. I can say this:

I have been spending a lot of time with Avalon and Longhorn since I got my bits at PDC and I just love all of the things I have been able to do with it. It's really an amazing platform for developing stuff.

Did it work?

Wednesday, February 11, 2004 2:28:38 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

When I moved away from weblogs.asp.net, I was adamant that I wanted to be able to cross-post back to there. That way I could write whatever the heck I wanted here and then push only .net related stuff over there. I started to get frustrated by having a split personality, by having comments there and not here and finally by realizing that many people were reading my blog there as part of the main feed and not realizing that I am over here. So I haven't cross-posted in a long long time. (Though I did make two “teaser” posts that pointed to posts that I wrote here.) So I noticed today that on the new blogs.asp.advice feed that Jeff Julian has a blog there. That confuses me. I think that personally I am more of the mind that I want to read what someone says all in one place - I am after the person, not the topic so much. Steve Smith moved over there, too but i think that is going to be his only place for posting. Alex Lowe is there which now adds to his posts since he is also on blogs.msdn.com (aka weblogs.asp.net/MainFeed.aspx?GroupID=2). However Alex clearly states on the new blog that “This blog exists only to highlight interesting discussions on AspAdvice.com. Stay tuned for pointers! "

Wednesday, February 11, 2004 8:32:23 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

If you own a newfie then this is a BIG deal. Westminster is the crowning dog show in the country and  a Newfie won best in show. Josh is a Pouchcove dog. (Hmmm, maybe someday a Blue Heaven Kennels dog could win...) He's a beautiful boy.

Westminster is commonly won by small dogs. It's really nice to have these beautiful special creatures touted at such a high level.

Wednesday, February 11, 2004 8:04:07 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Tuesday, February 10, 2004

Here's a little welcome to blogland, Robert! (from the Code Magazine party at PDC)

Learn more about Robert on the 12/16/2003 edition of .Net Rocks

Sorry to see Burlington, VT isn't on the upcoming tour.

Tuesday, February 10, 2004 9:55:37 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Brian Dear wrote about an “orkut moment” he had recently, which led me to the realization that in most cases, orkut is a good way to just see what people look like. My account is still active, so I just looked him up (knowing he is a member) and now I know what he looks like. Of course there are obnoxious people like me who post pictures that are only representative of themselves. Here is what I have used for my orkut picture.

I had planned on changing that to a photo of my kayak in the spring.

Tuesday, February 10, 2004 6:02:22 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Avonelle points out this t.v. ad for Vermont Teddy Bears which is one of Vermont's most well known businesses and #2 tourist attraction after Ben & Jerry's (though I can't figure out why...with so many other treasures). Anyway, I was amazed by the ad - it's kind of sleazy and low class - opposite of the image that they usually portray of themselves.

Tuesday, February 10, 2004 5:55:36 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Sam Gentile did a presentation at VTdotNET in September that really took the time and care to explain the many terms that define the .NET programming that we do. Although one of the very minor points of his talk, in there he happens to clarify the BCL vs. FCL, which I talked about in this post and discussed a bit with Ian Griffiths from Developmentor (in the comments) as well as Kit George from the BCL Team at MS via email. There really is a lot of misinformation and confusion about these definitions which don't really impact too many people, but I just somehow got curious.

Here are just some basics that may be totally redundant to some, but may have never been really clear to others.

BCL=Base Class Libraries which are part of the ECMA specification for Common Language Infrastructure (CLI). The CLR is Microsoft's an implementation of that. Rotor and Mono are other examples of implementations.

In .NET, Microsoft has taken the BCL and added to it all kinds of goodies like WinForms, Data, etc. This is called the FCL (Framework Class Library).

Really - how many gazillions of times have you seen this already?

I am going on and on about this because I have heard many people say “the BCL is ALL of the classes in .NET“.

I even happen to have a copy of Addison Wesley's Common Language Infrastructure Annotated Standards, but the real definition of the specs is downloadable from the ECMA site (above) if you are curious. I actually have done so, but must now stop the insanity and get back to the programming work I have to do this afternoon!

If you care to understand any of it - where the class libraries come from, what people mean when they say BCL, BCI, ECMA etc etc, I highly recommend checking out Sam's deck (this page and find the sept 2003 presentation) or even requesting him to come to your (U.S. or Canadian) User Group via INETA. If you view the powerpoints, be sure to turn on your speakers. (heh)

Tuesday, February 10, 2004 3:06:26 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

The ASP.NET Resource Kit (similar to the VB.NET Resource Kit) in fact, it's not even listed on the www.asp.net home page yet! But just got released yesterday (2/9/2004). Thanks to Scott Watermasysk for pointing it out. There don't seem to be any details anywhere yet (though Scott does quote a few...) , but I would just keep checking the www.asp.net site.

Tuesday, February 10, 2004 1:21:58 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

Steve Smith and I had to miss the DevDays (web track) speaker training last night because of the Vermont .NET User group meeting. But I know we will have plenty of opportunity to make that up.

Today is the last day for the DevDays discount. If you wait until tomorrow, you will have to spend $24 dollars MORE (well it is an additional 33%...) to attend the day and get not only lots of great training but WHIDBEY bits!!!!! (and more) My point is really the whole days is so damned cheap to attend - $75 with the discount and still only $99 without.

The user group meeting was awesome - Steve is a phenomenal presenter - I learned a ton. But I have to write more about that later.

Tuesday, February 10, 2004 12:16:31 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

I have a bit of an affinity to Newfoundland dogs. I have one, Tasha, she is my 5th. My parents breed them (www.blueheavennewfoundlands.com) and keep almost as many as they sell so they have a LOT.

That's why this is of interest to me! This isn't one of my parent's dogs, but Josh is a beautiful gorgeous thing.

Westminster is the biggest and most important dog show in the country.

Tuesday, February 10, 2004 12:03:13 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Monday, February 09, 2004

Oh wait, he's *in* the La-Z-Boy. The chair is a remnant of my husband's past bachelorhood and was allowed a spot in the basement office. Steve Smith has been honkered down in this chair for a few days by the fire. The cat is none too happy either. That's *his* chair! Steve is here to speak at VTdotNET tonight and then on to GUVSM in Montreal tomorrow night.

Monday, February 09, 2004 3:48:09 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 

I did it. I quit. maybe someday there will be value. Right now it looks to me like nothing more than a public popularity contest.

Monday, February 09, 2004 3:18:14 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Saturday, February 07, 2004

Drew expresses like a grown up what I have been whining about lately (or did I manage not to publish those posts?). I guess it's that fatherhood thing that gives him such an adult outlook!

Between this, this, this and this, I have been working my butt off lately. Haven't you? It's a busy time in our industry. Just when the .NET wave is really starting to kick-in with the list of company's deploying enterprise applications, there is a new wave coming that many on the edge are feeling the pressure to learn and prepare to be next year's experts.

Saturday, February 07, 2004 2:46:14 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
Saturday, February 07, 2004 11:43:38 AM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Friday, February 06, 2004

Brian Dear takes a look at what's happened to some of the gazillions of ____ for Dean websites.

Friday, February 06, 2004 10:10:30 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  | 
 Thursday, February 05, 2004

Christian Crumlish sent an email out to his entire network (if mine's 30,000+, I'm sure his is at least that)

subject: is orkut over?

text: looks like everybody got bored. does anyone have tetris?

heh heh...

Thursday, February 05, 2004 7:57:29 PM (Eastern Standard Time, UTC-05:00)  #     |  Comments [0]  |