Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Graphics in VB6

Status
Not open for further replies.

Ken01

Programmer
Aug 8, 2014
54
0
6
GB
Is it possible to draw a curved line between 2 points in Visual Basic 6 ?
I know that VB.Net has a bezier function for the task.
 
> VB.Net has a bezier function

VB.NET has the System.Drawing assembly which puts a thin wrapper around the GDI+ API, which can also be used by VB6 as well - but not easily.

You'll need a COM wrapper or type library.

Do search in this forum for dseaman's gdiplus type library, and you should find some of my examples of using this, albeit not one specifically for drawing bezier curves.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top