Search results for query: *

  1. T

    Changing state of label depending upon two checkboxs?

    Solotaire had it exactly right. I think this is what you want: Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged, CheckBox2.CheckedChanged Label1.Text = CStr(IIf(Not (CheckBox1.Checked Xor...
  2. T

    Question Maths mystery

    You are confused about the purpose of the IsNumeric function. It checks to be sure that the text in the textbox can safely converted into a number, i.e. there are only valid digits in the box. It DOESN'T convert the string in the box to a number. You are adding a valid string representation of a...
  3. T

    Resizable rectangle

    I am trying to create a simple calendar with drag and drop resizable event objects (e.g.'s meetings, lunch etc.). They need to be resizable in the Y axis only. I have found some example code that shows how to do drag and drop but I can't figure out how to make the objects resizable. Is there an...
Back
Top