Forum
Bildirimler
Hepsini Temizle
Yazılım Genel
2
Yazılar
2
Üyeler
0
Reactions
6,591
Görüntüleme
Konu başlatıcı
Ustalar masaüstü bir uygulama yazıyorum bir yerde takıldım yardımcı olursanız sevinirim.
string filename;
private void urun_btn_Click(object sender, EventArgs e)
{
this.openFileDialog1.Filter =
"Images (*.JPG;*.GIF)|*.JPG;*.GIF|" +
"All files (*.*)|*.*";
// Allow the user to select multiple images.
this.openFileDialog1.Multiselect = false;
this.openFileDialog1.Title = "Resim Seçiniz.";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
pictureBox1.Load(openFileDialog1.FileName);
filename = Application.StartupPath + "\\UrunResimleri\\" + urun_adi_txt.Text +".jpg";
}
}
private void kaydet_Click(object sender, EventArgs e)
{
if (urun_adi_txt.Text == "" || Barcode_txt.Text == "" || stok_txt.Text == "" || kdv_txt.Text == "" || fiyat_txt.Text == "" || uyari_txt.Text == "")
{
string alarm = "";
if (Barcode_txt.Text == "")
{
alarm += "* Lütfen barcode numarasını girin.\r\n";
}
if (urun_adi_txt.Text == "")
{
alarm = "* Lütfen ürün adı girin.\r\n";
}
if (fiyat_txt.Text == "")
{
alarm += "* Lütfen Fiyat Girin.\r\n";
}
if (kdv_txt.Text == "")
{
alarm += "* Lütfen kdv oranını girin.\r\n";
}
if (stok_txt.Text == "")
{
alarm += "* Lütfen stok için adet girin.\r\n";
}
if (uyari_txt.Text == "")
{
alarm += "* Lütfen stok'un alarm versi gereken sayıyı girin.\r\n";
}
MessageBox.Show(alarm);
}
else
{
pictureBox1.Image.Save(filename, System.Drawing.Imaging.ImageFormat.Jpeg);
}
}
** pictureBox1.Image.Save(filename, System.Drawing.Imaging.ImageFormat.Jpeg); bu noktada GDI+ içinde genel bir hata oluştu. diye bir hata alıyorum.
Gönderildi : 10/05/2012 00:06
Dosyanın yazma iznini kontrol edin.
Gönderildi : 11/05/2012 18:50