Arkadaşlar öncelikle merhaba tabloma bir resim konumu çekiyorum fakat / bu işaretleri koymamakta CHAR(100) Stilinde bir sütün. Olarak almakta. Bu sorunu nasıl düzeltebilirim. |
C# Mysql Veri Aktarımı
-
-
Hocam o işaret ters olacak dosya yollarında ve bir de string içerisinde "\" işaretini belirtmek için yan yana "\\" koymamız gerek.
-
Hocam ben değeri elimle değil otomatik olarak çekiyorum.
string resimLocation;
private void button1_Click(object sender, EventArgs e)
{
if (button1.Text == "Arkaplan Değiştirme")
{
OpenFileDialog fd = new OpenFileDialog();
fd.Title = "Resim Seç";
fd.Filter = "(*.jpg)|*.jpg|(*.png)|*.png";
if (fd.ShowDialog() == DialogResult.OK)
{
pictureBox1.Image = new Bitmap(fd.OpenFile());
resimLocation = fd.FileName;
}
//textBox5.Text = resimLocation.ToString();
}
-
c# - Path Stored in database is not right - Stack Overflow
öneri birde char ve varchar farkına bakarsın
-
Harikasınız hocam düzeldi böyle yapınca ! <3
string resimLocation;
string resimyol;
private void button1_Click(object sender, EventArgs e)
{
if (button1.Text == "Arkaplan Değiştirme")
{
OpenFileDialog fd = new OpenFileDialog();
fd.Title = "Resim Seç";
fd.Filter = "(*.jpg)|*.jpg|(*.png)|*.png";
if (fd.ShowDialog() == DialogResult.OK)
{
pictureBox1.Image = new Bitmap(fd.OpenFile());
resimLocation = fd.FileName;
resimyol = resimLocation.Replace(@"\", @"\\").Replace("'", @"\'");
}
Bu mesaj IP'si ile atılan mesajları ara Bu kullanıcının son IP'si ile atılan mesajları ara Bu mesaj IP'si ile kullanıcı ara Bu kullanıcının son IP'si ile kullanıcı ara
KAPAT X