
public new void Show(System.Windows.Forms.Control ctrl, string message, int timeout)
...{
Attach(ctrl, timeout);
base.Show(txt, message, timeout);
}
public new void Show(System.Windows.Forms.Control ctrl, string message,
Steepvalley.Windows.Forms.APIEnhanced.BalloonTipAPI.ToolTipIcon icon)
...{
Attach(ctrl);
base.Show(txt, message,icon);
}
public new void Show(System.Windows.Forms.Control ctrl, string message,
Steepvalley.Windows.Forms.APIEnhanced.BalloonTipAPI.ToolTipIcon icon, int timeout)
...{
Attach(ctrl, timeout);
base.Show(txt, message, icon, timeout);
}
public new void Show(System.Windows.Forms.Control ctrl,string title ,string message,
Steepvalley.Windows.Forms.APIEnhanced.BalloonTipAPI.ToolTipIcon icon)
...{
Attach(ctrl);
base.Show(txt,title, message, icon);
}
public new void Show(System.Windows.Forms.Control ctrl,string title, string message,
Steepvalley.Windows.Forms.APIEnhanced.BalloonTipAPI.ToolTipIcon icon, int timeout)
...{
Attach(ctrl, timeout);
base.Show(txt, title, message, icon, timeout);
}