BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
TextBox box = new TextBox();
box.Multiline = true;
box.Text = "Some random text here...";
box.BorderStyle = BorderStyle.None;
gridControl1.RowHeights[2] = 30;
gridControl1.ColWidths[2] = 200;
gridControl1[2,2].CellType = "Control";
gridControl1[2,2].Control = box;
this.Controls.Add(box);
private void panel1_Enter(object sender, System.EventArgs e) { if(Control.MouseButtons == MouseButtons.Left) { Point loc = Control.MousePosition; Point p = this.panel1.PointToClient(loc); if(this.checkBox1.Bounds.Contains(p)) this.checkBox1.Checked = !this.checkBox1.Checked ; } }
dim ctl as new GridCheckNumber()
GridControl1(1,1).CellType = "Control"
GridControl1(1,1).Control = ctl
Me.Controls.Add(ctl);
to see if that makes a difference.