Tekil Mesaj gösterimi
  #1  
Alt 15 June 2009, 15:24
Yorgun Yürek - ait Kullanıcı Resmi (Avatar)
Yorgun Yürek Yorgun Yürek isimli Üye şimdilik offline konumundadır
♥ GüLerken AğLadığını,MutLu OLanLar BiLmez
 
Kayıt Tarihi: 3 March 2009
Mesajlar: 35,077
Konular:
Aldığı Beğeni: 0 xx
Beğendiği Mesajlar: 0 xx
Standart VBasicte Basitten Word Programı

İki tane COMBOBOX, Üç tane CHECKBOX ve Bir tane TEXTBOX nesnelerini eklemeniz yeterlidir.

Private Sub Check1_Click()
Text1.FontBold = True
Text1.FontBold = Check1.Value
End Sub
Private Sub Check2_Click()
Text1.FontItalic = True
Text1.FontItalic = Check2.Value
End Sub
Private Sub Check3_Click()
Text1.FontUnderline = True
Text1.FontUnderline = Check3.Value
End Sub
Private Sub Combo1_click()
Text1.FontName = Combo1.Text
End Sub
Private Sub Combo2_Click()
Text1.FontSize = Combo2.Text
End Sub
Private Sub Form_Load()
Dim i
For i = 0 To Screen.FontCount - 1
Combo1.AddItem Screen.Fonts(i)
Next
For i = 8 To 100 Step 2
Combo2.AddItem i
Next

End Sub
Alıntı ile Cevapla