how to save Graph?

david_reinjal

Member
Joined
Jun 24, 2006
Messages
8
Programming Experience
Beginner
hi guys,
i have this code attached below. i need to save the graph. how do i do that?
 

Attachments

  • gdiplus.zip
    41.3 KB · Views: 38
VB.NET:
img1.image.save(filename)
 
Did you ever think to actually set a filename in that string?

VB.NET:
img1.Image.Save("bitmap.bmp")
documentation said:
Image.Save Method (String)

Parameters

filename : A string that contains the name of the file to which to save this Image object.
 
Back
Top