Click here to Skip to main content
15,886,919 members
Home / Discussions / C#
   

C#

 
GeneralRe: function parameter with default value Pin
Tom Archer24-Jul-03 8:19
Tom Archer24-Jul-03 8:19 
GeneralRe: function parameter with default value Pin
Nemanja Trifunovic24-Jul-03 10:01
Nemanja Trifunovic24-Jul-03 10:01 
GeneralRe: function parameter with default value Pin
Tom Archer24-Jul-03 10:38
Tom Archer24-Jul-03 10:38 
GeneralRe: function parameter with default value Pin
Nemanja Trifunovic24-Jul-03 12:04
Nemanja Trifunovic24-Jul-03 12:04 
GeneralXML selialize Pin
Mazdak23-Jul-03 22:04
Mazdak23-Jul-03 22:04 
GeneralRe: XML selialize Pin
pseudonym6724-Jul-03 7:15
pseudonym6724-Jul-03 7:15 
GeneralToolTip on GDI+ figure Pin
r923-Jul-03 21:13
r923-Jul-03 21:13 
GeneralRe: ToolTip on GDI+ figure Pin
Valeria Bogdevich23-Jul-03 23:15
Valeria Bogdevich23-Jul-03 23:15 
1). Declare global variables ToolTip tt; and bool installed = true;

2). Initialize tt in constructor of the form: tt = new ToolTip()

3). Override OnMouseMove:
protected override void OnMouseMove(System.Windows.Forms.MouseEventArgs e)
{
    if (bounds.Contains(e.X, e.Y))
    {
	this.Cursor = Cursors.Hand;
	if (installed)
	{
	    tt.SetToolTip(this, "Hello, r9 :o)");
	    installed = false;
	}
    }
    else 
    {
	this.Cursor = Cursors.Default;
	if (!installed)
	{
	    tt.RemoveAll();	
	    installed = true;
	}
    }
    base.OnMouseEnter(e);
}





"...hasn't really been well accepted ... as the ratings tell us so far Smile | :) " - Nishant S
GeneralRe: ToolTip on GDI+ figure Pin
r923-Jul-03 23:29
r923-Jul-03 23:29 
GeneralRe: ToolTip on GDI+ figure Pin
Valeria Bogdevich24-Jul-03 0:18
Valeria Bogdevich24-Jul-03 0:18 
GeneralRe: ToolTip on GDI+ figure Pin
r924-Jul-03 0:23
r924-Jul-03 0:23 
Generalhelppppppppp meeeeeeeee !!! Pin
KETUINHA23-Jul-03 15:51
KETUINHA23-Jul-03 15:51 
GeneralRe: helppppppppp meeeeeeeee !!! Pin
jtmtv1823-Jul-03 16:26
jtmtv1823-Jul-03 16:26 
GeneralCreating Image Encoders/Decoders for GDI+ Pin
J. Dunlap23-Jul-03 13:45
J. Dunlap23-Jul-03 13:45 
GeneralRe: Creating Image Encoders/Decoders for GDI+ Pin
leppie24-Jul-03 7:18
leppie24-Jul-03 7:18 
GeneralAdd Reference Pin
albean23-Jul-03 12:55
albean23-Jul-03 12:55 
GeneralRe: Add Reference Pin
J. Dunlap23-Jul-03 13:22
J. Dunlap23-Jul-03 13:22 
GeneralRe: Add Reference Pin
Derek Lakin23-Jul-03 21:46
Derek Lakin23-Jul-03 21:46 
GeneralRe: Add Reference Pin
Ista24-Jul-03 5:52
Ista24-Jul-03 5:52 
GeneralRe: Add Reference - Thanks Pin
albean24-Jul-03 5:27
albean24-Jul-03 5:27 
GeneralRe: Add Reference Pin
Ista24-Jul-03 6:54
Ista24-Jul-03 6:54 
Generaldatagrid check box Pin
retZ23-Jul-03 12:03
retZ23-Jul-03 12:03 
GeneralRe: datagrid check box Pin
totig23-Jul-03 13:26
totig23-Jul-03 13:26 
GeneralRe: datagrid check box Pin
Radoslav Bielik24-Jul-03 5:04
Radoslav Bielik24-Jul-03 5:04 
GeneralAccess Denied Pin
Alexandru Serban23-Jul-03 11:38
professionalAlexandru Serban23-Jul-03 11:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.