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().BatchDelete()
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()