On the DateBox, I want to set the default local to British (or whatever does a DD/MM/YYYY rather than MM/DD/YYYY)
On a textBox, I want to set a BackGround Colour when the control gets focus. This we have on VFP and it is very useful, particulalrly on a form with many controls, to give the user a visual clue as to where they are at.
(I am of the impression that there is now 'Visual' way to change a property in .net but maybe someone could confirm this)
public class DateBox : MicroFour.StrataFrame.UI.Windows.Forms.DateBox{// Code here to change Date format to british }
public class Textbox : MicroFour.StrataFrame.UI.Windows.Forms.Textbox{// VFP equivalent --> when enabled this.BackGroundColour = Rgb(255,0,0)}