Sorgu için arama sonuçları: picture

  1. T

    Butonla fotoğraf eklemek hk. yardım

    Aktif olan hücre boyutuna göre resim ekler Sub seçilen_hücreye_resim_ekle() Dim sPicture As String, pic As Picture Dim Target As Range ChDir ThisWorkbook.Path sPicture = Application.GetOpenFilename _ ("Pictures (*.gif; *.jpg; *.bmp; *.tif), *.gif; *.jpg; *.bmp; *.tif", _...
  2. M

    Userforma Tüm Uzantılarda Resim Çağırma

    çok teşekkür ederim.
  3. M

    Userforma Tüm Uzantılarda Resim Çağırma

    çok teşekkür ederim.
  4. kulomer46

    Userforma Tüm Uzantılarda Resim Çağırma

    ...Error Resume Next ResimDosya = ThisWorkbook.Path & "\RESİM\" & TextBox1 & ".jpg" If Dir(ResimDosya) <> "" Then Image1.Visible = True Image1.Picture = LoadPicture(ThisWorkbook.Path & "\RESİM\" & TextBox1 & ".jpg") exit sub end if ResimDosya = ThisWorkbook.Path & "\RESİM\" & TextBox1 &...
  5. Korhan Ayhan

    Userforma Tüm Uzantılarda Resim Çağırma

    Deneyiniz. Private Sub TextBox1_Change() On Error Resume Next ResimDosya = ThisWorkbook.Path & "\RESİM\" & TextBox1 & ".*" If Dir(ResimDosya) = "" Then Image1.Visible = False Else Image1.Visible = True Image1.Picture = LoadPicture(ThisWorkbook.Path & "\RESİM\" & ResimDosya) End If End Sub
  6. M

    Userforma Tüm Uzantılarda Resim Çağırma

    ...Private Sub TextBox1_Change() On Error Resume Next ResimDosya = ThisWorkbook.Path & "\RESİM\" & TextBox1 & ".Jpg" If Dir(ResimDosya) = "" Then Image1.Visible = False Else Image1.Visible = True Image1.Picture = LoadPicture(ThisWorkbook.Path & "\RESİM\" & TextBox1 & ".Jpg") End If End Sub
  7. E

    Soru En Son Satıra Resim Eklemek

    Merhaba , deneyiniz.. Sub Test() Dim Resim For Each Resim In Sheets("Sayfa1").Shapes If Resim.Name = "Picture 7" Then Resim.Copy ActiveSheet.Paste Destination:=Cells(Cells(Rows.Count, 10).End(3).Row + 1, 10) 'Resim.Delete End If...
  8. L

    Soru Autocad deki çizimi excel e aktarma

    ...xlFreeFloating .Width = Application.InchesToPoints(x / 16) .Height = Application.InchesToPoints(y / 16) .CopyPicture xlScreen, xlPicture ActiveSheet.Paste x2 = (Selection.Width - .Width) / 3 y2 = (Selection.Height - .Height) /...
  9. A

    Soru CommandButton İcon Ekleme

    Button üzerinde sağ tıklayın properties(özellikler) de picture ile istediğiniz resmi ekleyebilirsiniz. Ancak hem yazı hem de resim olmaz ama resme yazı ekleyip öyle eklerseniz olur.
  10. asdsxx

    UserForm'a eklenen Arkaplan Bitmap resmini gizleme

    Haluk Bey teşekkürler... UserForm1.Picture = LoadPicture("") Me.Repaint Bu şekilde mi olacak
  11. asdsxx

    UserForm'a eklenen Arkaplan Bitmap resmini gizleme

    Çok Teşekkürler Haluk Bey.
  12. H

    UserForm'a eklenen Arkaplan Bitmap resmini gizleme

    UserForm1.Picture = LoadPicture("") .
  13. tamer42

    Sayfa üzerinde Option buttonlar' ın caption bilgilerini alma

    2019 versiyonundan kaynaklı olabilir Halit hocam her şey için teşekkürler iyi akşamlar.
  14. halit3

    Sayfa üzerinde Option buttonlar' ın caption bilgilerini alma

    Kod ofis 2003 -2007-2016 da çalışıyor. Private Sub CommandButton1_Click() Dim Picture As Object For Each Picture In ActiveSheet.Shapes If TypeName(Picture.OLEFormat.Object) = "OLEObject" Then If TypeName(Picture.OLEFormat.Object.Object) = "OptionButton" Then If...
  15. tamer42

    Sayfa üzerinde Option buttonlar' ın caption bilgilerini alma

    Halit hocam ilginize teşekkürler yalnız ekte hata mesajını alıyorum
  16. halit3

    Sayfa üzerinde Option buttonlar' ın caption bilgilerini alma

    kod: Private Sub CommandButton1_Click() Dim Picture As Object For Each Picture In ActiveSheet.Shapes say = say + 1 Cells(say, 1) = Picture.Name If TypeName(ActiveSheet.Shapes(Picture.Name).OLEFormat.Object.Object) = "OptionButton" Then MsgBox...
  17. M

    Rastgele kopyanan resmi belirlenen hücre ölçülerine uygun hale getirip yapıştırma

    Yardımınız ve ilginiz için çok teşekkür ederim kod tam işimi görmedi
  18. yunus788

    Rastgele kopyanan resmi belirlenen hücre ölçülerine uygun hale getirip yapıştırma

    ...tek bir resim sığdırabilirsiniz örnek dosya ekte. Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) Dim sPicture As String, pic As Picture sPicture = Application.GetOpenFilename _ ("Pictures (*.gif; *.jpg; *.bmp; *.tif), *.gif; *.jpg; *.bmp; *.tif", _ ...
  19. bycakir

    invalid picture hatası

    ...resimler geliyor. resmi olmayanlarda eski resim geliyor. yenile sub tarzında bir sayfa yeniletme kullanıyorum ama oraya image3 deki eski resmi temizletemiyorum. su kodu denedim olmadı Me.Image3.Picture = LoadPicture ("") listboxdan sectiğim urunun resmi yok ise image3 boş kalsın istiyorum.
  20. bycakir

    invalid picture hatası

    merhaba userfornda image3 e resim çağırmaya kalktıgımda invalid picture hatası veriyor. yardımcı olurmusunuz aşağıdaki kodda yol olarak gösterilen yerde resim mevcut Me.Image3.Picture = LoadPicture(ThisWorkbook.Path & "\Resim Dosyaları\" & TextBox2.Value & ".JPG")
Üst