I'd look into System.Drawing and draw your own grid. Should be really
simple. Make a new custom control, override paint, and away you go.
I wrote a simple game of "Go" in VB.NET about 2.5 years ago. Didn't have
any experience with GDI or System.Drawing, but the API is really really easy
to use, so in about 5 hours I got the basic thing layed out. Play around,
and if you have specific questions about drawing, try the
microsoft.public.dotnet.framework.drawing NGs (use google groups first too
:)).
Good luck!
-mike
MVP
> Hi,
>
[quoted text clipped - 11 lines]
>
> Thanks in advance, John.
Santiago - 14 Nov 2003 18:57 GMT
I think going with picture boxes will make your life much simpler than
creating your own custom. The picture boxes will support displaying your gif
or jpg and should have all the events you need (click, etc).
- Santiago
> I'd look into System.Drawing and draw your own grid. Should be really
> simple. Make a new custom control, override paint, and away you go.
[quoted text clipped - 26 lines]
> >
> > Thanks in advance, John.