One of my application is used in warehouse operations. It has a weather control to keep dispatchers and drivers informed. Here are two screen-shots Powered By: XtraGrid Google Weather API ......
I’ve always kept my creations out of the spotlight, however, this year I opted in and submitted one of my apps. The results, pleasing but mostly inspirational. I am fascinated with UI in both WinForms and Web applications. I am going to be making some posts on some of my applications UI.
I was looking for a way to delete many objects (selected in a GridView) in one query instead of iterating each ActiveRecord and executing the .Destroy(). I tried the following but it didn’t work myActiveRecordCollection().... I used this instead Dim items As New ArrayList() For Each Item Selected in the GridView items.Add(the id of the record I want to delete) Next Dim query As New SubSonic.Query(Table.Schema) query.QueryType = SubSonic.QueryType.Delete query.IN("ColumnName", list) query.Execute() ......
Over the last few days I’ve been coding away with several ORMS and code generators trying to find me one which I am comfortable with. Here is what I learn Not all ORMs are perfect! SubSonic Telerik OpenAccess nHibernate via Code smith Generator and LLBLGen LLBLGen Pro Framework SubSonic This is an awesome piece of work my Mr. Conery (and team)…for FREE! I’ve been using this for quite a while now. It is excellent for small projects, both Web and Winform apps. It’s a breeze to setup and get off and ......