I am unable to find line , oval ,rectangle etc Drawing tools in Visual Studio 2010 .........
I am also unable to find VisualBasic.PowerPack ...........

Plz tell how to get them

Thnks :)

Hello,

For the drawing part, you need to create a variable "As Graphics", then you use that variable to draw whatever shape you want
Example:
myGraphics.DrawRectangle(pen:=myPen, rect:=myRectangle)

Or, you can create a variable "As Rectangle" and use it like this:
myRectangle = New Rectangle(Location:=New Point(10, 10), Size:=New Size(Width:=20, Height:=60))

Best of luck.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.