Step-by-Step Visual Basic .NET Splash Screen Tutorial | Series #1

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ธ.ค. 2024

ความคิดเห็น • 10

  • @tbone7509
    @tbone7509 8 หลายเดือนก่อน +1

    Excellent tutorial video!!! Thank you so much for sharing!!! :)

    • @kodeleap
      @kodeleap  8 หลายเดือนก่อน

      You are so welcome!

  • @angelukpong
    @angelukpong ปีที่แล้ว +1

    Thank you. Great tutorial.

    • @kodeleap
      @kodeleap  ปีที่แล้ว

      You're welcome! I'm glad you found the tutorial helpful🔥

  • @jesseking4833
    @jesseking4833 ปีที่แล้ว +1

    What if I used a panel instead of a progressive bar

    • @kodeleap
      @kodeleap  ปีที่แล้ว

      Thank you for your question. I think the right tool should be used for the right purpose. Progress bar gives feedback to the user about the status of an action, but panel act more like a wrapper or a container for other tools or elements on the form. Thanks. I hope this answers question.

  • @agios34
    @agios34 หลายเดือนก่อน +2

    You need to put a me.close in Form1 in your code. Because Form1 will run in the background permanently, EVEN if frmDashbordvb is closed.
    Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
    ProgressBar1.Increment(1)
    If (ProgressBar1.Value = 100) Then
    Me.Hide()
    Timer1.Enabled = False
    Timer1.Stop()
    frmDashbordvb.ShowDialog()
    Me.Close()
    End If
    End Sub

    • @etrekpah
      @etrekpah หลายเดือนก่อน

      Great observation.❤

    • @kodeleap
      @kodeleap  หลายเดือนก่อน

      Good catch man👌

    • @wisnuagung1093
      @wisnuagung1093 8 วันที่ผ่านมา

      after i put me.close() the program really close, but frmdashboardvb doesn't load..