Click here to Skip to main content
15,902,840 members
Home / Discussions / C#
   

C#

 
QuestionDownloadable C# Tutorials??? Pin
TGeist5-Oct-09 17:35
TGeist5-Oct-09 17:35 
AnswerRe: Downloadable C# Tutorials??? Pin
Luc Pattyn5-Oct-09 17:41
sitebuilderLuc Pattyn5-Oct-09 17:41 
AnswerRe: Downloadable C# Tutorials??? Pin
kideve5-Oct-09 17:57
kideve5-Oct-09 17:57 
QuestionConvert Access App To C# Pin
Kevin Marois5-Oct-09 16:15
professionalKevin Marois5-Oct-09 16:15 
AnswerRe: Convert Access App To C# Pin
N a v a n e e t h5-Oct-09 17:14
N a v a n e e t h5-Oct-09 17:14 
GeneralRe: Convert Access App To C# Pin
Kevin Marois5-Oct-09 17:30
professionalKevin Marois5-Oct-09 17:30 
AnswerRe: Convert Access App To C# Pin
kideve5-Oct-09 17:55
kideve5-Oct-09 17:55 
AnswerRe: Convert Access App To C# Pin
riced6-Oct-09 3:38
riced6-Oct-09 3:38 
GeneralRe: Convert Access App To C# Pin
Kevin Marois6-Oct-09 5:39
professionalKevin Marois6-Oct-09 5:39 
GeneralRe: Convert Access App To C# Pin
Eddy Vluggen6-Oct-09 8:38
professionalEddy Vluggen6-Oct-09 8:38 
QuestionUpdate Typed DataSet Pin
tamir9015-Oct-09 11:42
tamir9015-Oct-09 11:42 
AnswerRe: Update Typed DataSet Pin
Henry Minute5-Oct-09 11:48
Henry Minute5-Oct-09 11:48 
QuestionFunny location!! Pin
Muammar©5-Oct-09 9:17
Muammar©5-Oct-09 9:17 
AnswerRe: Funny location!! Pin
Not Active5-Oct-09 9:41
mentorNot Active5-Oct-09 9:41 
GeneralRe: Funny location!! Pin
Muammar©5-Oct-09 10:29
Muammar©5-Oct-09 10:29 
AnswerRe: Funny location!! [modified] Pin
DaveyM695-Oct-09 10:19
professionalDaveyM695-Oct-09 10:19 
The active pixel of the cursor by default is the top left of the cursor rectangle IIRC. I'm not sure if this can be changed (I think it can but I can't remember how).

This will centre your line at the cursor point.
C#
private void Form1_MouseMove(object sender, MouseEventArgs e)
{
    int widthHeight = 20;
    using (Graphics g = this.CreateGraphics())
    {
        g.FillEllipse(Brushes.Red, new Rectangle(
            e.X - (widthHeight / 2), 
            e.Y - (widthHeight / 2), 
            widthHeight, 
            widthHeight));
    }
}
[Edit] Just checked and the 'hot spot' pixel is set in the cursor file itself. I just downloaded this[^] to try it! [/Edit]

Dave

Generic BackgroundWorker - My latest article!
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Why are you using VB6? Do you hate yourself? (Christian Graus)

modified on Monday, October 5, 2009 4:29 PM

GeneralRe: Funny location!! Pin
Muammar©5-Oct-09 10:38
Muammar©5-Oct-09 10:38 
GeneralRe: Funny location!! Pin
DaveyM695-Oct-09 10:40
professionalDaveyM695-Oct-09 10:40 
GeneralRe: Funny location!! Pin
Muammar©5-Oct-09 11:12
Muammar©5-Oct-09 11:12 
GeneralRe: Funny location!! Pin
Christian Graus5-Oct-09 12:50
protectorChristian Graus5-Oct-09 12:50 
GeneralRe: Funny location!! Pin
Muammar©5-Oct-09 23:19
Muammar©5-Oct-09 23:19 
GeneralRe: Funny location!! Pin
DaveyM695-Oct-09 12:55
professionalDaveyM695-Oct-09 12:55 
GeneralRe: Funny location!! Pin
Muammar©5-Oct-09 23:15
Muammar©5-Oct-09 23:15 
GeneralRe: Funny location!! Pin
DaveyM695-Oct-09 13:06
professionalDaveyM695-Oct-09 13:06 
GeneralRe: Funny location!! Pin
DaveyM695-Oct-09 13:55
professionalDaveyM695-Oct-09 13:55 

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.