Results 1 to 4 of 4

Thread: Rerender Control in IDE when property changes

  1. #1

    Thread Starter
    Frenzied Member Memnoch1207's Avatar
    Join Date
    Feb 2002
    Location
    DUH, Guess...Hint: It's really hot!
    Posts
    1,861

    Rerender Control in IDE when property changes

    I posted this question in ASP.NET area, but not sure if I should have posted it here instead.
    Anyway here is the question

    Repaint/Rerender control in IDE when property changes.
    Being educated does not make you intelligent.

    Need a weekend getaway??? Come Visit

  2. #2

    Thread Starter
    Frenzied Member Memnoch1207's Avatar
    Join Date
    Feb 2002
    Location
    DUH, Guess...Hint: It's really hot!
    Posts
    1,861
    *BUMPTY POW*
    Being educated does not make you intelligent.

    Need a weekend getaway??? Come Visit

  3. #3
    Fanatic Member pax's Avatar
    Join Date
    Mar 2001
    Location
    Denmark
    Posts
    840
    Hi.

    I don't know if this is what you're after?
    VB Code:
    1. Private MyShowAllThree As Boolean = True
    2.  
    3.     Public Property ShowAllThree() As Boolean
    4.         Get
    5.             Return MyShowAllThree
    6.         End Get
    7.         Set(ByVal Value As Boolean)
    8.             MyShowAllThree = Value
    9.             TextBox3.Visible = MyShowAllThree
    10.         End Set
    11.     End Property
    I wish I could think of something witty to put in my sig...

    ...Currently using VS2013...

  4. #4

    Thread Starter
    Frenzied Member Memnoch1207's Avatar
    Join Date
    Feb 2002
    Location
    DUH, Guess...Hint: It's really hot!
    Posts
    1,861
    I was trying to do it with a designer, but it seemed like overkill.
    But I ended up doing it just the way you posted it.
    Being educated does not make you intelligent.

    Need a weekend getaway??? Come Visit

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width