Search results for query: *

  • Users: davco
  • Content: Threads
  • Order by date
  1. D

    Question Saving a drawn image on picturebox to file

    I am using vb .net 2003 and can draw on a picturebox just fine,but I can`t figure out how to save that drawing to a file.Can anyone help me out with this problem?:D
  2. D

    Image resizing

    I have an image resizing app and I need to keep the deminsions proportionate. How do I do that with this code? Private Sub Reduce(ByVal factor As Double) img = New Bitmap(img, New Size(50, 50)) picPhoto.Image = img Dim SizeKb As String ' To compute: size in Kb Dim ms...
  3. D

    calling subs

    Why can`t I get this to execute in the button1_click event? PublicSub AddCurveExample(ByVal e As PaintEventArgs) ' Create some points. Dim point1 AsNew Point(20, 20) Dim point2 AsNew Point(40, 0) Dim point3 AsNew Point(60, 40) Dim point4 AsNew Point(80, 20) ' Create an array of the points...
Back
Top