Skip to main content

AccessTr.neT


Createobject("wscript.shell").popup Mesajda 3 Buton Ve Default Seçim

Createobject("wscript.shell").popup Mesajda 3 Buton Ve Default Seçim

#8
şu şekilde kullanılırsa tıklanmadığında yapacağınız işlemleri yaptırabilirsiniz
Dim objWshShell As Variant
        Dim intResult As Variant
       
        Set objWshShell = CreateObject("WScript.Shell")
        intResult = objWshShell.PopUp("Kaydedilmeyecek...", 1, "Süre bitti...", vbYesNoCancel + vbQuestion + vbDefaultButton3)

        Select Case intResult
            Case -1
                MsgBox "Tıklanmadı"
            Case vbYes
                MsgBox "Yes"
            Case vbNo
                MsgBox "No"
            Case vbCancel
                MsgBox "Cancel"
        End Select
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
Cvp: Createobject("wscript.shell").popup Mesajda 3 Buton Ve Default Seçim - Yazar: accessman - 24/03/2020, 12:01
Task