You are interested in VB6? That's not something that new Scratch members are likely to know. Maybe you should look for a VB forum?
I'll move this to Inspiration and More since it's not Scratch related.
Offline
'Hi I don't use vb6 but I use vb.NET which is similar. Here is vb.NET code for saving
Dim Savefiledialog1 As New SaveFileDialog()
Savefiledialog1.Filter = "(what file type you want it to be saved as)"
If Savefiledialog1.ShowDialog() = DialogResult.OK Then
Dim response As String
response = Savefiledialog1.Filter
'you now use "response" as the location it's going to be saved in
'example for saving an image.
PictureBox1.Image.Save(Savefiledialog1.FileName, System.Drawing.Imaging.ImageFormat.Bmp)
end if
'I recommend that you just look on the internet for your question. I know it can be hard 'to find but it's there.
Last edited by what-the (2009-12-08 21:49:31)
Offline