.net framework 4.0

  1. 6atafrak

    need code for drawing this square

    Hey guys, I need help this is code for the triangle from photo protected override void OnPaint(PaintEventArgs e) { Graphics g = e.Graphics; Pen p = new Pen(Color.Blue, 2); int n = 3, m = 30; //1st int x1 = 100, y1...
  2. A

    Resolved How can i change Timers to Eventhandlers?

    I have a variable that changes by external device which is a camera that detect faces this variable is an array of bytes which is always zero when no face is detected but when face is detected the bytes that describes the face is stored in this variable i am currently using an approach which i...
  3. P

    Question How to set borderstyle of a datagridview column at runtime (.Net Framework 4.0)?

    I have a readonly datagridview that is bound to a datasource. It has two columns. Now I want the first column to have no cell borderstyle; and the second one to have 'All' (i.e. all sides of the cell shall have a border) as cell borderstyle. Before binding the datagridview to the...
Back
Top Bottom