• Merhaba Ziyaretçi,
    Microsoft 365 Uygulamaları ile ilgili yeni haberler, dikkat çekici konular, ilgi ile takip edeceğiniz yazılar için.

    Abone Olun
  • ESTE - Microsoft Office Eğitimleri

    Yeni yıl Microsoft Office Eğitim planlarınız için bütçenizi oluşturmadan önce ESTE eğitim kalitesi ile tanışın. 🙌
    Kullanıcıların ihtiyacı olan yazılı materyal, dosya ve video kaynağı desteğimiz ile tüm ofis çalışanlarının iş süreçlerini rahatlatacak eğitimler planlayın. 🎯
    Microsoft Office eğitimlerimiz hakkında detaylı bilgi için bize ulaşın.

    👉 Microsoft Office Eğitim Talebi

Yardım SGK uygulamalarına otomatik giriş

Ercan_CELİKOGLU

Yeni Üye
Katılım
22 Eki 2023
Mesajlar
6
En iyi yanıt
0
Puanları
1
Yaş
54
Konum
AĞRI
Ad Soyad
Ercan ÇELİKOĞLU
Office Vers.
2007
Sub OpenEdge()
Dim edgePath As String
Dim edgeUrl As String

' Set the path to Microsoft Edge executable file
edgePath = "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe"

' Set the URL that you want to open in Microsoft Edge
edgeUrl = "Excel WEB TR Forum - Excel, Excel Makro, Excel Fonksiyon, Excel Formül, Excel soru ve çözümleri"

' Open Microsoft Edge with the specified URL
Shell edgePath & " " & edgeUrl, vbNormalFocus
End Sub

yukarıda verdiğim kodla microsoft edge açılıyor
ancak benim istediğim
Sub SGKBORÇSORGUEKDERS()
Set xd = CreateObject("internetexplorer.application")
With xd
.navigate "Kullanıcı Giriş Ekranı"
.Visible = True
Do While .busy: DoEvents: Loop
Do While .readystate <> 4: DoEvents: Loop
.document.all.userLogin_basvuru_tcKimlikNo.Value = "1111111111"
.document.all.userLogin_basvuru_isyeriKodu.Value = "1"
.document.all.userLogin_basvuru_sistemSifre.Value = "111111"
.document.all.userLogin_basvuru_isyeriSifre.Value = "111111"
End With
End Sub
Sub SGKV2EKDERS()
Set xd = CreateObject("internetexplorer.application")
With xd
.navigate "T.C. Sosyal Güvenlik Kurumu"
.Visible = True
Do While .busy: DoEvents: Loop
Do While .readystate <> 4: DoEvents: Loop
.document.all.kullaniciIlkKontrollerGiris_username.Value = "11111111111"
.document.all.kullaniciIlkKontrollerGiris_isyeri_kod.Value = "1"
.document.all.kullaniciIlkKontrollerGiris_password.Value = "111111"
.document.all.kullaniciIlkKontrollerGiris_isyeri_sifre.Value = "111111"
End With
End Sub

Sub VİZİTEEKDERS()
Set xd = CreateObject("internetexplorer.application")
With xd
.navigate "Vizite Giriş Sistemi"
.Visible = True
Do While .busy: DoEvents: Loop
Do While .readystate <> 4: DoEvents: Loop
.document.all.kullaniciAdi.Value = "11111111111"
.document.all.isyeriKodu.Value = "1"
.document.all.isyeriSifresi.Value = "111111"

End With
End Sub
bu kodlarla butona makro atadığımda explorer yerine microsoft edge ile açmasını sağlamak
saygılarımla.
lütfen dosya olarak değil kod olarak paylaşırmısınız saygılarımla
 

musapekel

Yeni Üye
Katılım
10 Ara 2023
Mesajlar
9
En iyi yanıt
0
Puanları
3
Yaş
24
Konum
istanbul
Ad Soyad
musa pekel
Office Vers.
2016 Tr
Kod:
Sub OpenEdge()
    Dim edgePath As String
    Dim edgeUrl As String

    ' Set the path to Microsoft Edge executable file
    edgePath = "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe"

    ' Set the URL that you want to open in Microsoft Edge
    edgeUrl = "ExcelTurkey Forum - Excel, Excel Makro, Excel Fonksiyon, Excel Formül, Excel soru ve çözümleri"

    ' Open Microsoft Edge with the specified URL
    Shell edgePath & " " & edgeUrl, vbNormalFocus
End Sub

Sub SGKBORÇSORGUEKDERS()
    Set xd = CreateObject("internetexplorer.application")
    With xd
        .navigate "Kullanıcı Giriş Ekranı"
        .Visible = True
        Do While .busy: DoEvents: Loop
        Do While .readyState <> 4: DoEvents: Loop
        .document.all.userLogin_basvuru_tcKimlikNo.Value = "1111111111"
        .document.all.userLogin_basvuru_isyeriKodu.Value = "1"
        .document.all.userLogin_basvuru_sistemSifre.Value = "111111"
        .document.all.userLogin_basvuru_isyeriSifre.Value = "111111"
    End With
End Sub

Sub SGKV2EKDERS()
    Set xd = CreateObject("internetexplorer.application")
    With xd
        .navigate "T.C. Sosyal Güvenlik Kurumu"
        .Visible = True
        Do While .busy: DoEvents: Loop
        Do While .readyState <> 4: DoEvents: Loop
        .document.all.kullaniciIlkKontrollerGiris_username.Value = "11111111111"
        .document.all.kullaniciIlkKontrollerGiris_isyeri_kod.Value = "1"
        .document.all.kullaniciIlkKontrollerGiris_password.Value = "111111"
        .document.all.kullaniciIlkKontrollerGiris_isyeri_sifre.Value = "111111"
    End With
End Sub

Sub VİZİTEEKDERS()
    Set xd = CreateObject("internetexplorer.application")
    With xd
        .navigate "Vizite Giriş Sistemi"
        .Visible = True
        Do While .busy: DoEvents: Loop
        Do While .readyState <> 4: DoEvents: Loop
        .document.all.kullaniciAdi.Value = "11111111111"
        .document.all.isyeriKodu.Value = "1"
        .document.all.isyeriSifresi.Value = "111111"
    End With
End Sub
 
Moderatör tarafında düzenlendi:
Üst Alt