Blog Archive
Kategori Software Dan Trik
- account premium (2)
- antivirus (1)
- cheat (2)
- crack (1)
- freeware (13)
- hack (2)
- internet (9)
- operating system (1)
- photo (5)
- portable (8)
- promosi and info (23)
- repack (4)
- serial (7)
- software bayar (9)
- support (2)
- Tutorial Visual Basic (3)
- untiles (1)
Category List
- account premium (2)
- antivirus (1)
- cheat (2)
- crack (1)
- freeware (13)
- hack (2)
- internet (9)
- operating system (1)
- photo (5)
- portable (8)
- promosi and info (23)
- repack (4)
- serial (7)
- software bayar (9)
- support (2)
- Tutorial Visual Basic (3)
- untiles (1)
Blog Archive
-
▼
2011
(39)
- ► 10/02 - 10/09 (1)
- ► 09/25 - 10/02 (1)
- ► 09/18 - 09/25 (1)
- ► 09/11 - 09/18 (1)
- ► 09/04 - 09/11 (1)
- ► 08/14 - 08/21 (1)
- ▼ 07/24 - 07/31 (3)
- ► 07/10 - 07/17 (3)
- ► 06/26 - 07/03 (2)
- ► 06/19 - 06/26 (2)
- ► 05/29 - 06/05 (1)
- ► 05/22 - 05/29 (5)
- ► 05/15 - 05/22 (5)
- ► 05/08 - 05/15 (3)
- ► 05/01 - 05/08 (6)
- ► 04/24 - 05/01 (2)
- ► 04/17 - 04/24 (1)
Top Menu
<-----------------------------------
/\
||
||
||
||
Adsense Camp
Senin, 25 Juli 2011
Cara Membuat Image Corverter Dengan Visual Basic 2010
Ane Mau Share Source Code fulldoang Image Corverter Disini. Karena Software Ini Open Source Jadi Ane Share Deh.. Tapi Agan Harus Punya Dulu Software Yang Bernama Visual (Basic Atau Studio) 2010 Yang Mau Tahu Source Codenya Langsung Aja Ke TKP
Video: Tombol Open Image:
Try
If OpenFileDialog1.ShowDialog() = DialogResult.OK Then
PictureBox1.Image = System.Drawing.Image.FromFile(OpenFileDialog1.FileName)
End If
Catch ex As Exception
End Try
If ComboBox1.SelectedItem = "JPEG" Then
Try
SaveFileDialog1.Filter = "JPEG |*.jpeg"
If SaveFileDialog1.ShowDialog() = DialogResult.OK Then
PictureBox1.Image.Save(SaveFileDialog1.FileName, System.Drawing.Imaging.ImageFormat.Jpeg)
End If
Catch ex As Exception
End Try
End If
If ComboBox1.SelectedItem = "PNG" Then
Try
SaveFileDialog1.Filter = "PNG |*.png"
If SaveFileDialog1.ShowDialog() = DialogResult.OK Then
PictureBox1.Image.Save(SaveFileDialog1.FileName, System.Drawing.Imaging.ImageFormat.Png)
End If
Catch ex As Exception
End Try
End If
If ComboBox1.SelectedItem = "GIF" Then
Try
SaveFileDialog1.Filter = "GIF |*.gif"
If SaveFileDialog1.ShowDialog() = DialogResult.OK Then
PictureBox1.Image.Save(SaveFileDialog1.FileName, System.Drawing.Imaging.ImageFormat.Gif)
End If
Catch ex As Exception
End Try
End If
If ComboBox1.SelectedItem = "BMP" Then
Try SaveFileDialog1.Filter = "BMP |*.bmp"
If SaveFileDialog1.ShowDialog() = DialogResult.OK Then
PictureBox1.Image.Save(SaveFileDialog1.FileName, System.Drawing.Imaging.ImageFormat.Bmp)
End If
Catch ex As Exception
End Try
End If
Sumber: Youtube
Label:
photo,
Tutorial Visual Basic
Langganan:
Posting Komentar (Atom)
0 komentar: