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

Thread: MouseMove

  1. #1
    Join Date
    Aug 1999
    Location
    US, Florida
    Posts
    817

    MouseMove

    I have a problem.....
    Ok I have option1.option, whenever I move my mouse over that Option1, I want my label1 to display Option1.backcolor.....not the color but the line "Option1.backcolor", but it displays the number like 255 and I want it to display the "Option1.backcolor"

    Please Help


  2. #2
    Join Date
    Aug 1999
    Location
    India-Delhi
    Posts
    106

    Re: MouseMove

    Andy,

    use the following

    MyStr = Option1.Name & ".Backcolor"
    Label1.Caption = MyStr





    Santulan

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