1903emre34@gmail.com
Altın Üye
- Katılım
- 29 Mayıs 2016
- Mesajlar
- 946
- Excel Vers. ve Dili
- Microsoft Excel 2013 Türkçe
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Merhaba,
Ekteki dosya açıldığı zaman tam ekran yapmak istedim ama olmadı, forumda ki kodlara baktım uyguladığım zaman ,diğer excel dosyaları tam ekran oluyor.
Private Sub UserForm_Initialize()
Set s2 = Sayfa2
b = s2.[F65536].End(3).Row
For a = 6 To s2.[F65536].End(3).Row
If IsNumeric(Left(s2.Cells(a, "B"), 1)) = False Then s2.Cells(a, "B").ClearContents
If s2.Cells(a, "B") <> "" Then
If UBound(Split(s2.Cells(a, "F").Value, ":")) = 0 Then
If UBound(Split(s2.Cells(a, "F").Value, "(")) <> 0 Then
ListBox2.AddItem Split(s2.Cells(a, "F").Value, "(")(0)
Else
ListBox2.AddItem s2.Cells(a, "F").Value
End If
Else
ListBox2.AddItem Split(s2.Cells(a, "F").Value, ":")(0)
End If
End If
Next
[COLOR=Red] Application.WindowState = xlMaximized
Me.Top = Application.Top
Me.Left = Application.Left
Me.Width = Application.Width
Me.Height = Application.Height[/COLOR]
End Sub