Monday, February 28, 2011

Lesson 5

Here is a place to put comments and questions on lesson 5.

Lesson 4

Here is a place to put comments and questions on Lesson 4.

Thursday, February 17, 2011

Lesson 4

Thanks to those that have turned in there assignment for lesson 4.  Any comments on this assignment?  John has an idea of why I was having a problem when I deactivated the autoPostBack property for one of the PullDown controls.  John, could you  post that.  I think you have it right.

Friday, February 4, 2011

Individual Experience

Please comment on this post with:
  • What is your programming experience (languages, how long, ...)?
  • What is your knowledge of HTML?
  • Why you are taking the class
Thanks.

Thursday, February 3, 2011

Lesson 3

There has been a question about lesson 3.  I did jump the gun somewhat by asking you to use the table control.  It is pretty easy.  Just drag and drop the control on your form like you did the button is lesson 1.  Here is an example of using a Table control:


Table1.BorderColor = Color.AliceBlue;
        Table1.BorderWidth = 2;

        for (var i = 0; i < 10; i++)
        {
            var row = new TableRow();
            Table1.Rows.Add(row);
            for (var j = 0; j < 5; j++)
            {
                var cell = new TableCell();
                cell.BorderColor = Color.Blue;
                cell.BorderWidth = 2;
                cell.Text = i + "," + j;
                row.Cells.Add(cell);
            }
        }
    }

I'll also cover this Monday in our online session.  You will be be getting details in the next day or so, but block out 7:00 PM if you can.  It will be recorded as well.

Keep the questions coming,

Terry