Archive for the '.NET' Category

Opening MDIChild in Maximised State

Sunday, August 26th, 2007

Visual studio 2005 designer has no way of ensuring that a MDIChild opens in maximised state within its parent all the time. Changing the WindowState property in designer to Maximized does not work every time.
Ensuring that the MDIChild opens in a maximized state requires programatic adjustments.
To make a MDIDhild open in Maximized state in all […]

Binding Objects to Client-Side Controls.

Wednesday, August 22nd, 2007

This article is a continuation of Part 1 : Returning objects from a web service.
Windows form controls can easily be bound to either a single object or a collection of objects returned to the client by a web service.
This article demonstrates how to bind a object array to a DataGridView.The code for this demo can […]