Search results for query: *

  1. Z

    Uploading an Image to Access

    Its not that I'm confused on the second thread, let me just cover the code part by part.... Dim fs As FileStream 'selecting the file to use int he filestream fs = New FileStream(OpenFileDialog1.FileName, FileMode.Open, FileAccess.Read) I don't want to use an OpenFileDialog here. I deal...
  2. Z

    Uploading an Image to Access

    I am working on a program that needs to store images from a PictureBox into an Access database and later retreive (and display them) in the same PictureBox. I am stuck on the saving portion. My "ideal" code would be something like the following: objAddCommand.Parameters("Picture").Value =...
Back
Top