Dart Board Program

Hello.
I am thinking about making a dart board scoring program. The biggest obstacle I can think of is making the dart board to click on and get different scores depending on what section is clicked. I'm using C++ Builder XE7. First is this the right place to post such a question? If so does anyone have any ideas? Thanks.
Greg
put image on form, register onMouseClick event and use received X,Y coordinates to calculate points clicked. Use label to show point count.
Sounds like a plan, but there are hundreds of x,y coordinates. Is there an easy way to find out what slice of the pie and section it belongs too? Maybe by color? Thanks!
The winapi function GetPixel() will give you color of the pixel at a given coordinate.

https://msdn.microsoft.com/en-us/library/windows/desktop/dd144909%28v=vs.85%29.aspx
Thanks I'll look into it, and see if I can get something working.
Topic archived. No new replies allowed.