Jump to content
Xtreme .Net Talk

Ashaman

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Ashaman

  1. Even better, download the VB Resource kit from Microsoft and register it (free). You get a fully functioning (and distributable) version of a spell checking library.
  2. Wyrd's latest solution post causes the form to flash for an instant on my machine. What I do is add a 'Component' to my application and set its 'main' method as the project startup. Then I can put my NotifyIcon and Menu on this guy and let menu clicks show the form when needed. This way, you never have anything flash on the screen.
  3. You're awsome. At first glance, that appears to be *exactly* what I need. I feel silly that I couldn't find it, myself. Cheers!
  4. I want to build a custom collection class for a business object (say, 'Customer'). With VB6, I would delegate to a Collection and get the benefit of referencing items in the collection be either Index or Key. Trying to do the same thing with VB.Net, I tried to inherit 'System.Collections.CollectionBase', but it doesn't provide keys, just the index. So, I tried to inherit from 'System.Collections.Specialized.HybridDictionary', but it doesn't seem to provide the Index property. Is there an object that I can inherit from that gives me both? Thanks!
×
×
  • Create New...