So for a month or two the Telligent folks have been hinting at their new product Graffiti. This appear to be a venture into the CMS world which would great! The video was released today. Worth the watch, not much detail, but the little you do see looks cool.
A CMS and Community Server would be a great combination. Add to that they cool stuff in Community Server 2008 and social networking and Telligent is some one to watch. When are you guys going public?
Community Server is holding their first developers conference on October 20 th and 21 st. I trying to clear up some scheduling issues so I can attend. I am sure it will be an interesting event. The roadmap for 2008 seems aggressive, but exciting. Would love to get see a sneak preview. The API sounds like it will easier given the use of Web Services.
Well, I hope I can figure out how to get there.
I found an announce today while creating a VB.NET, ASP.net application. I needed a to determine the items selected in a ListBox control which has it's SelectionMode="Multiple" property set.
However, ListBox doesn't have a selecteditems property. It only has the singular version of selecteditem. This isn't the case in Winforms, by the way. So I had to find another solution. Which is actually quite simple, but hopefully helpful to then person who has this problem. See code below.
Dim ObjListItem As ListItem
For Each ObjListItem In DDLAvailUsers.Items
If ObjListItem.Selected = True Then
....
End If
End If
Next