CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 26

Threaded View

  1. #10
    Join Date
    Nov 2002
    Location
    .NET 3.5 VS2008
    Posts
    1,039

    Re: change button color back to transparent?

    Thanks.

    The first thing I would try is replace this line...
    Code:
    rbtnSkill.ID = Convert.ToString(criterium[i].Skill) + " , " + c;
    with this...
    Code:
    rbtnSkill.ID = Convert.ToString(criterium[i].Skill) + c;
    Last edited by nelo; January 27th, 2010 at 10:47 AM. Reason: Added code tags...

Tags for this Thread

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

Featured