How to plot & display a sinewave using VB .NET?

xiaoDD

Member
Joined
May 6, 2003
Messages
8
Hi,

I wish to write a program using VB .NET for drawing/plotting a curve (e.g. squrewave, sinewave, line, etc). Would anyone please advise which control is suitable to perform this task?

TQvM
 
You can use any control to paint to, but Id use a Panel or Picturebox if youre not making your own. Catch the controls Paint event and use the passed Graphics object to paint.
 
Back
Top