Hi guys :wave i have a picturebox in my form and it receives a new screenshot every 2 seconds from a timer. when the timer interval hits 2000 every time and updates the the picturebox image to the new screenshot image how do i save that image as a jpeg in an order of "ss1.jpeg, ss2.jpeg, ss3.jpeg ect... to a folder specified by the FolderBrowserDialogThe problem is that i can select the folder that i want to output the images to with the "folderbrowserdialog" but it only saves the first picture. I have basically no idea on how to do this so if you could please make it clear on what to do that would be great thank youCode:Dim strfilename As String Dim folder As String strfilename = "1.jpeg" folder = FolderBrowserDialog1.SelectedPath Call Form3.picturebox1.Image.Save(folder & "\" & strfilename, System.Drawing.Imaging.ImageFormat.Jpeg)btw: i have already been looking all over the internet for this answer, i didn't just post straight away like some people do and wast your time. there is definitely nothing i can find on this thank you again
![]()




btw: i have already been looking all over the internet for this answer, i didn't just post straight away like some people do and wast your time. there is definitely nothing i can find on this thank you again
Reply With Quote
