Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. opening Tooltip

opening Tooltip

Scheduled Pinned Locked Moved C#
tutorialquestion
4 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jojoba2010
    wrote on last edited by
    #1

    How to open tooltip in the bellow of textbox(I mean any control)?

    L 1 Reply Last reply
    0
    • J jojoba2010

      How to open tooltip in the bellow of textbox(I mean any control)?

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      http://msdn.microsoft.com/en-us/library/ms754034.aspx#create_tooltip[^] Change button control to textbox control.

      J 1 Reply Last reply
      0
      • L Lost User

        http://msdn.microsoft.com/en-us/library/ms754034.aspx#create_tooltip[^] Change button control to textbox control.

        J Offline
        J Offline
        jojoba2010
        wrote on last edited by
        #3

        Thanks! the site you sent has problem! I want this for windows application? So Help!

        L 1 Reply Last reply
        0
        • J jojoba2010

          Thanks! the site you sent has problem! I want this for windows application? So Help!

          L Offline
          L Offline
          Lost User
          wrote on last edited by
          #4

          TextBox textBox = new TextBox(); textBox.Name = "textBox1"; textBox.Text = "This is a textbox"; textBox.Location = new Point(10, 10); textBox.Size = new Size(100, 50); Controls.Add(textBox); ToolTip toolTip = new ToolTip(); toolTip.SetToolTip(textBox, "Hello tooltip");

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups