Microsoft Excel VBA inputBox Uygulaması Nasıl Çalışır Konu Anlatım İleri Excel 29.Ders

Поделиться
HTML-код
  • Опубликовано: 8 фев 2025
  • inputbox kullanımı,
    inputbox c#,
    inputbox excel,
    inputbox örnekleri,
    inputbox kullanımı c#,
    inputbox vba,
    inputbox kullanımı vba,
    inputbox ile veri girişi,
    inputbox autoit,
    inputbox ahk,
    inputbox access,
    box based input output,
    inputbox visual basic,
    input box visual basic 6.0,
    batch file input box,
    power bi input box,
    inputbox visual basic excel,
    inputbox visual basic 2019,
    vba inputbox cancel,
    c# inputbox kullanımı,
    inputbox c# windows forms,
    inputbox con lista desplegable vba,
    vba inputbox con opciones,
    inputbox delphi,
    inputbox date vba,
    inputbox excel vba,
    input box in c#,
    input box visual basic,
    funcion inputbox en excel,
    excel inputbox erstellen,
    messagebox e inputbox,
    inputbox function,
    inputbox function in vb,
    inputbox function in vba,
    inputbox google script,
    inputbox in vba,
    inputbox in vb.net,
    inputbox in vb 6.0,
    inputbox in excel vba,
    input box lazarus,
    input box list vba,
    input box meaning in hindi,
    input box macro excel,
    input box multiple values,
    input box mql4,
    input box matlab,
    input box material design,
    vba inputbox multiple inputs,
    input box and msgbox in visual basic,
    input box numeric only,
    inputbox vb.net,
    input box on instagram,
    box input output reasoning,
    react input box,
    input box styling,
    input box select from list,
    input box swift,
    google sheets input box,
    set top box input output,
    visual studio input box,
    sfml text input box,
    input box android studio,
    input box tableau,
    input box trong vba,
    input box tkinter python 3,
    input box to select range vba,
    input box tkinter,
    python tkinter input box,
    input text box html,
    input box unity,
    javascript user input box,
    inputbox vba excel,
    application.inputbox vba,
    vba inputbox,
    inputbox y msgbox en visual basic

Комментарии • 4

  • @ismailsar9266
    @ismailsar9266 4 года назад +2

    Hocam yine kral olmuş kodlamanın temeli bunlar

    • @eschool1398
      @eschool1398  4 года назад

      Kesinlikle yapı aynı çok teşekkür ederim

  • @osmanberbergil4180
    @osmanberbergil4180 3 года назад

    Private Sub CommandButton2_Click()
    sayı = InputBox("Sınavdan kaç aldın", "Sorgu Sistemi")
    Range("A1").Value = sayı
    If sayı < 50 Then
    MsgBox "Kaldın", vbCritical
    Else
    MsgBox "Tebrikler Geçtiniz Devam etmek istiyor musunuz ?", vbYesNo, "Seçim Menüsü"
    If vbNo Then
    MsgBox "Bol Şans"
    Else
    MsgBox "Tebrikler"
    End If


    End If
    End Sub
    Hocam iyi akşamlar burda kodun else kısmının içine girmiş olduğum ikinci if else yapısında bol şans yazdırırken Tebrikler yazdıramıyorum acaba sebebi nedir ?

    • @TolgaAktolgali
      @TolgaAktolgali 3 года назад

      Bir de aşağıdaki gibi kodu düzenleyerek çalıştır :)
      Private Sub CommandButton2_Click()
      sayı = InputBox("Sınavdan kaç aldın", "Sorgu Sistemi")
      Range("A1").Value = sayı
      If sayı < 50 Then
      MsgBox "Kaldın", vbCritical
      Else
      If MsgBox("Tebrikler Geçtiniz Devam etmek istiyor musunuz ?", vbYesNo, "Seçim Menüsü") = vbNo Then
      MsgBox "Bol Şans"
      Else
      MsgBox "Tebrikler"
      End If
      End If
      End Sub