This is a discussion on how to show text:..................? within the C# Programming forums, part of the Software Development category; hi all, i am devoloping website, i want to show some text when user take corser on textname(lebletext) i ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| hi all, i am devoloping website, i want to show some text when user take corser on textname(lebletext) i give example url see" http://www.discussweb.com/ " in this website take corser on Employer click here (in home page right side corner on top) i will show some text .. i want like that please help me.. Thanx in Advance... Rameshkumar M |
| Sponsored Links |
| |||
| Hi, I have 3 DropDownLists on the page : one for a Month, second one for a Day, and the last one for a Year. How can I let the user choose the data and enter it to 'datetime' column in the database?
__________________ Sathish Kumar.R ![]() Knowledge is meant to SHARE |
| |||
| hi Sathish Kumar, In VB.NET: Dim dt as DateTime = DateTime.Parse(ddlMonth.SelectedItem.Text & "/" & ddlDay.SelectedItem.Text & "/" & ddlYear.SelectedItem.Text ) In C# DateTime dt = DateTime.Parse(ddlMonth.SelectedItem.Text & "/" & ddlDay.SelectedItem.Text & "/" & ddlYear.SelectedItem.Text ); regards, M.Sundaram Last edited by Sundaram : 12-26-2007 at 05:04 AM. |
| |||
| hi shaalini, try like this private void Form1_Load(object sender, System.EventArgs e) { // Create the ToolTip and associate with the Form container. ToolTip toolTip1 = new ToolTip(); // Set up the delays for the ToolTip. toolTip1.AutoPopDelay = 5000; toolTip1.InitialDelay = 1000; toolTip1.ReshowDelay = 500; // Force the ToolTip text to be displayed whether or not the form is active. toolTip1.ShowAlways = true; // Set up the ToolTip text for the Button and Checkbox. toolTip1.SetToolTip(this.button1, "My button1"); toolTip1.SetToolTip(this.checkBox1, "My checkBox1"); } |
| |||
| Hi Shalini, The ToolTip property is inherited from the WebControl class and is not applicable to the DropDownList control. This implementation of the ToolTip property does not allow you to set a value and returns String. In a word, if we can make this (a dropdown with ToolTip) work with plain HTML and client side script, we should be able to emit the necessary code from ASP.NET. Regards, M.Sundaram |
![]() |
| Thread Tools | |
| Display Modes | |
| |
LinkBacks (?)
LinkBack to this Thread: http://www.discussweb.com/c-programming/4856-how-show-text.html | |||
| Posted By | For | Type | Date |
| DiscussWeb IT Community - Technical Support and Technology Discussions | This thread | Refback | 12-26-2007 05:03 AM |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How do I check that text entered in a text form field is an integer? | itbarota | HTML, CSS and Javascript Coding Techniques | 2 | 10-26-2007 12:25 AM |
| How to Encode a text and Decode it to get the original text using c# .Net? | Archer | C# Programming | 1 | 07-21-2007 01:10 AM |
| How do you show the currently running queries? | Sabari | Database Support | 2 | 07-17-2007 05:33 AM |
| slide show | Alan | Flash Actionscript Programming | 3 | 04-10-2007 01:31 AM |
| Are you a Heroes (The TV Show)? | makemoneyonlinenow | The Lounge | 1 | 04-03-2007 06:42 AM |