Pencereyi Tam Ekran Yap - Microsoft Excel


Excel uygulamasını tam ekran yapmaya yarayan VBA kodudur.

Kod


Option Explicit

Private Sub PencereyiTamEkranYap(deger As Boolean)
    Application.DisplayFullScreen = deger
    Application.CommandBars("Full Screen").Enabled = deger
End Sub


Sub OrnekKullanim()
    PencereyiTamEkranYap False
End Sub

Etiketler
microsoft excel microsoft excel vba