.net

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gayatrich
    New Member
    • Sep 2008
    • 1

    .net

    How can I change the backcolor of textbox automatically after every second
  • deric
    New Member
    • Dec 2007
    • 92

    #2
    How about using a Timer? On its Tick event, change the backcolor of the textbox depending on how you want it...

    Comment

    • rohitkulkarni1986
      New Member
      • Sep 2008
      • 3

      #3
      prepare an array of colors.
      then take a timer control
      on tick event of timer go through the array.
      when ur counter variable goes out of range of array again initialize it to 0.
      it will work!

      Comment

      Working...