Search results for query: *

  1. spicyadmin

    file doesnt show up in the "MyDocuments" folder

    I fixed it. I was hiding a different StreamWriter class in a different project file. Thanks for the help!
  2. spicyadmin

    file doesnt show up in the "MyDocuments" folder

    it's literally only these two instances. I don't have it placed anywhere else
  3. spicyadmin

    file doesnt show up in the "MyDocuments" folder

    I'm not too sure what to do to fix it
  4. spicyadmin

    file doesnt show up in the "MyDocuments" folder

    Though (sorry to bother again) I am having one other problem now with a different part. I want to read and write to a file in the "MyDocuments" folder. I used the same method as the first problem I was having but the file doesnt show up in the "MyDocuments" folder, the file shows up in the...
  5. spicyadmin

    Errors and more erros

    GOT IT!!! Thank you for the help!!! private void btn_capImage_Click(object sender, EventArgs e) { string fileName = "IPCams Capture-" + DateTime.Now.ToString("HH-mm-ss tt") + ".jpg"; string folderPath =...
  6. spicyadmin

    Errors and more erros

    Ok, so I did that private void btn_capImage_Click(object sender, EventArgs e) { string fileName = "IPCams Capture-" + DateTime.Now.ToString("HH-mm-ss tt") + ".jpg"; string folderPath =...
  7. spicyadmin

    Errors and more erros

    ok, I tried the following but I get no pictures at all. There are no errors but there are also no pictures now. private void btn_capImage_Click(object sender, EventArgs e) { string fileName = "IPCams Capture-" + DateTime.Now.ToString("HH-mm-ss tt") + ".jpg"...
  8. spicyadmin

    Errors and more erros

    It should work because I want it to. idk. In #7, the mod told me to clean up my code and organize it. I did so and was then told to do the second part which would be #9, but it doesn't work.
  9. spicyadmin

    Errors and more erros

    I don't want to be a copy and paste programmer, but I am seriously having trouble understanding the documentation
  10. spicyadmin

    Errors and more erros

    doesn't help
  11. spicyadmin

    Errors and more erros

    Not too sure how I would use the Path.Combine method I am still getting the same error now with the following private void btn_capImage_Click(object sender, EventArgs e) { string imgs = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures)...
  12. spicyadmin

    Errors and more erros

    Now I am getting "cannot convert from 'string' to 'System.Drawing.Imaging.ImageFormat'" string imgs = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures); pbx_image.Image.Save(imgs, "IPCams Capture-" + DateTime.Now.ToString("HH-mm-ss tt") + ".jpg");
  13. spicyadmin

    Errors and more erros

    care to elaborate? Im kind of a beginner here
  14. spicyadmin

    Errors and more erros

    Ok? Can I get help on how to save the image to the "My Pictures" folder?
  15. spicyadmin

    Errors and more erros

    I've been trying to find a solution to a problem I am having. I am trying to save a picture to the "My Pictures" folder but I keep getting an error in the code saying "cannot convert from 'string' to 'system.environment.specialfolderoption'"...
Back
Top Bottom