devxlogo

September 1, 2016

Salesforce Announces Einstein AI Initiative

In Salesforce’s second quarter earnings conference call, company CEO Marc Benioff announced that the firm is working on a new artificial intelligence initiative that will be integrated into the company’s

Giving a User Control a Border

You can give a User Control a border with the following code: protected override CreateParams CreateParams { get { CreateParams cp = base.CreateParams; cp.ExStyle &= (~NativeMethods.WS_EX_CLIENTEDGE); cp.Style &= (~NativeMethods.WS_BORDER); switch