Click here to Skip to main content
15,889,266 members
Home / Discussions / C#
   

C#

 
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 
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 
Wait Blush | :O
Actually, when applying your code to the form it works like a charm, but when doing the same to a pictureBox control, the same problem persists..

private void pbPreview_MouseMove(object sender, MouseEventArgs e)
{

    if (e.Button == MouseButtons.Left)
    {
        int HW = 20;
        Bitmap b = (Bitmap)pbPreview.Image.Clone();
        Graphics g = Graphics.FromImage(b);
        g.FillEllipse(Brushes.Violet,
        new Rectangle(
            e.X - (HW / 2),
            e.Y - (HW / 2),
        HW,HW));
        pbPreview.Image = (Image)b;
    }
}


I tried using the HotSpot as you said but it's somehow a static point! I also tried this in the pain event handler of the pictureBox
private void pbPreview_Paint(object sender, PaintEventArgs e)
{
    int HW = 20;
    Graphics g = e.Graphics;
    g.FillEllipse(Brushes.Yellow,
    new Rectangle(
        this.Cursor.HotSpot.X,
        this.Cursor.HotSpot.Y,
    HW, HW));
}


Please Dave, let me know if you still have a trick up your sleeve Smile | :)


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 
QuestionA control on the mainform doesn't update when others do Pin
teknolog1235-Oct-09 8:57
teknolog1235-Oct-09 8:57 
AnswerRe: A control on the mainform doesn't update when others do Pin
DaveyM695-Oct-09 10:33
professionalDaveyM695-Oct-09 10:33 
GeneralRe: A control on the mainform doesn't update when others do Pin
teknolog1236-Oct-09 2:45
teknolog1236-Oct-09 2:45 
GeneralRe: A control on the mainform doesn't update when others do Pin
DaveyM696-Oct-09 7:17
professionalDaveyM696-Oct-09 7:17 
GeneralRe: A control on the mainform doesn't update when others do Pin
teknolog1237-Oct-09 6:17
teknolog1237-Oct-09 6:17 
QuestionSilverlight Vertigo.Slideshow problem in C#/XAML Pin
Richard Hudson5-Oct-09 8:55
Richard Hudson5-Oct-09 8:55 
AnswerRepost to wrong forum Pin
Not Active5-Oct-09 9:43
mentorNot Active5-Oct-09 9:43 
Questionneed help with excel version problem Pin
jashimu5-Oct-09 7:53
jashimu5-Oct-09 7:53 
AnswerRe: need help with excel version problem Pin
Eddy Vluggen5-Oct-09 8:41
professionalEddy Vluggen5-Oct-09 8:41 
GeneralRe: need help with excel version problem Pin
jashimu5-Oct-09 9:13
jashimu5-Oct-09 9:13 
GeneralRe: need help with excel version problem Pin
Eddy Vluggen5-Oct-09 10:54
professionalEddy Vluggen5-Oct-09 10:54 

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.