- Ana Sayfa
- Haberler
- Bağlantılarım
- Hava Durumu
- Youtube
4 Ağustos 2015 Salı
FEST-İ BURSA 2015
Değirmenlikızık Eğitim Kurumları bünyesinde eğitim gören öğrencilere destek amaçlı yapılan 10 gün devam edecek olan Kermes organizasyonu. Açılış : 29 Ağustos 2015 Saat 11:00
Yer: Yıldırım Belediyesi Bayrak Alanı
12 Şubat 2015 Perşembe
Excel VBA Hücreye Açıklama Ekleme
Sub AciklamaEkle()
Dim S1 As Worksheet
Set S1 = Worksheets("Sayfa1")
Call
Aciklama_Ekle (S1.Cells(1, 1), "Açıklama Eklendi")
End Sub
Function Aciklama_Ekle(hucre As Range, note As String)
Dim cmt As Comment
Set cmt = hucre.Comment
If cmt Is Nothing Then
Set cmt = hucre.AddComment
cmt.Text Text:=note
Else
note = note & Chr(10) & cmt.Text
cmt.Text Text:=note
If cmt.Shape.Height < 150 Then cmt.Shape.Height = cmt.Shape.Height + 20
End If
cmt.Visible = False
End Function
Excel VBA Hücreye link verme
Sub linkverdene()
Dim S1 As Worksheet
Dim S2 As Worksheet
Set S1 = Worksheets("Sayfa1")
Set S2 = Worksheets("Sayfa2")
Call linkver(S1.Cells(1, 1),S2.Cells(1, 1))
Call linkver(S2.Cells(1, 1),S1.Cells(2, 1))
End Sub
Function linkver(nereye As Range, neresi As Range)
Dim adres As String
adres = neresi.Address(RowAbsolute:=False)
Mid(adres, 1, 1) = "!"
adres = neresi.Worksheet.Name & adres
nereye.Hyperlinks.Add nereye, Address:="", SubAddress:=adres, ScreenTip:=adres
End Function
7 Ocak 2015 Çarşamba
Microstation VBA Yazılara ek vermek
Program Facebook "Microstation Kullanıyorum" grubu üyelerini isteği üzerine yapılmıştır.
'--------------------------------------------------------------------------------------------------
Sub TextEk_main()
Form_YaziEk.Show
End Sub
'--------------------------------------------------------------------------------------------------
Function Text_Guncelle(eText As TextElement)
eText.Text = Form_YaziEk.TBOnek & eText.Text & Form_YaziEk.TBSonek
eText.Redraw
eText.Rewrite
End Function
Penceresini açalım ve yaziek adında yeni bir mvba dosyası oluşturalım.
VBA düzenleme kısmında yandaki isimlerde bir form ve modül oluşturalım. Forma yandaki gibi nesneleride oluşturalım ve nesnelerin komutlarını yazalım.
Ayrıntıları videoda bulabilirsiniz.
|
|
'--------------------------------------------------------------------------------------------------
Sub TextEk_main()
Form_YaziEk.Show
End Sub
'--------------------------------------------------------------------------------------------------
Function Text_Guncelle(eText As TextElement)
eText.Text = Form_YaziEk.TBOnek & eText.Text & Form_YaziEk.TBSonek
eText.Redraw
eText.Rewrite
End Function
'--------------------------------------------------------------------------------------------------
FormYazi_Ek Formu Kodları
'--------------------------------------------------------------------------------------------------Private Sub CBFence_Click()Dim oElement As Element ' Element bilgilerini içerecek bir değişkenDim oScanEnumerator As ElementEnumerator 'Element sayacıDim oFence As FenceSet oFence = ActiveDesignFile.FenceIf oFence.IsDefined ThenSet oScanEnumerator = oFence.GetContentsDo While oScanEnumerator.MoveNextSet oElement = oScanEnumerator.CurrentIf oElement.Type = msdElementTypeText ThenCall Text_Guncelle(oElement.AsTextElement)End IfLoopEnd IfEnd Sub'--------------------------------------------------------------------------------------------------Private Sub CBSecili_Click()Dim oElement As ElementDim oScanEnumerator As ElementEnumeratorSet oScanEnumerator = ActiveModelReference.GetSelectedElementsDo While oScanEnumerator.MoveNextSet oElement = oScanEnumerator.CurrentIf oElement.Type = msdElementTypeText ThenCall Text_Guncelle(oElement.AsTextElement)End IfLoopEnd Sub'--------------------------------------------------------------------------------------------------Private Sub CBTumu_Click()Dim oElement As ElementDim oScanEnumerator As ElementEnumeratorDim oScanCriteria As ElementScanCriteriaSet oScanCriteria = New ElementScanCriteriaoScanCriteria.ExcludeAllTypesoScanCriteria.IncludeType msdElementTypeTextSet oScanEnumerator = ActiveModelReference.Scan(oScanCriteria)Do While oScanEnumerator.MoveNextSet oElement = oScanEnumerator.CurrentIf oElement.Type = msdElementTypeText ThenCall Text_Guncelle(oElement.AsTextElement)End IfLoopEnd Sub'--------------------------------------------------------------------------------------------------Private Sub Image1_Click()Call Navigate("http://bybesu.blogspot.com.tr/2015/01/microstation-vba-yazlara-ek-vermek.html")End Sub'--------------------------------------------------------------------------------------------------
Hasan Basri KARA
Harita Mühendisi
|
Kaydol:
Kayıtlar (Atom)