More Vista Gadget Rambling

I’ve gotten the sample .NET interop tools working. I don’t think it’s feasible to modify the flickr .net library to work within the constraints needed by this interop hack but a small custom flickr library should be relatively easy. Right now it’s bitching at me about how my class doesn’t implement IDisposable, which is a load of crap assuming that all I have to do to implement IDisposable is this:

public class Flickr : IDisposable
{
...
}

I’m going to keep fiddling with it as a way to keep homework from driving me mad.  So far this isn’t a good stopgap though, as gadget development has me going almost as crazy as my algorithms homework.

Comments are closed.