Hi ,
I am able to set the tooltip ( delay time )for textbox as i required.
here is my code
private Infragistics.Win.ToolTip tTip= new Infragistics.Win.ToolTip (this);
protected override void OnMouseHover(EventArgs e)
{
if (this.Text != string.Empty){tTip.ToolTipText = this.Text.ToString();tTip.AutoPopDelay = 500000; // able to set the delay timetTip.Show();}
}
protected override void OnMouseLeave(EventArgs e){
base.OnMouseLeave(e);tTip.Hide();
How can i set the delay time of tooltip in ultracombocell.
her is my code
protected override void OnInitializeRow(Infragistics.Win.UltraWinGrid.InitializeRowEventArgs e) { if (!e.ReInitialize) { e.Row.Cells[this.DisplayMember].ToolTipText= e.Row.Cells[this.DisplayMember].Value.ToString(); } base.OnInitializeRow(e); }
Please let me know how we can set the delaytime as we have done for textbox?
if we are able to set the delay time using ultratooltipmanager please provide me the code. Its very urgent.
Thanks
Subbu.
Hi Subbu,
What exactly do you mean by "an ultracombocell?" Are you talking about a cell in the WinGrid which drops down a list? Or a cell in the UltraCombo control's list portion?
Either way, you cannot use the ToolTipText property for this. You would have to turn off the ToolTips on the control itself and use an UltraToolTipManager and provide tooltips for the cell yourself.
AM facing issue while selecting Item from SwfComboBox. As soon as i perform the select operation, A window Pops up and QTP Just waits to complete the select operation until i Click Cancel Manually. Is there any way that i can handle or End the Select operation immediately after selecting..
For Eg.
While Executing the below statement, The QTP performs the operation the selection but doesnt end the execution of the statement as there is a window which pops up immediately and i have no clue why the statement is still executing after selection. There is no other statement apart from this line of code.
SwfWindow("").SwfComboBox("").Select sTestData
Nooruddin
Hello Nooruddin,
I already saw your question in that forum thread : http://community.infragistics.com/forums/p/67801/346067.aspx#
I`ll create a small sample for you and will update you soon. Let me know if you have any questions.
Regards