Advertisement
bakhcha

splash Screen

May 3rd, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. Imports System
  2. Imports System.Collections.Generic
  3. Imports System.ComponentModel
  4. Imports System.Data
  5. Imports System.Drawing
  6. Imports System.Linq
  7. Imports System.Text
  8. Imports System.Threading.Tasks
  9. Imports System.Windows.Forms
  10.  
  11. Namespace splash_screen
  12. Public Partial Class Form1
  13. Inherits Form
  14.  
  15. Public Sub New()
  16. InitializeComponent()
  17. End Sub
  18.  
  19. Private Sub timer1_Tick(ByVal sender As Object, ByVal e As EventArgs)
  20. rectangleShape2.Width += 5
  21.  
  22. If rectangleShape2.Width >= 308 Then
  23. timer1.[Stop]()
  24. Dim frm2 As Form2 = New Form2()
  25. frm2.Show()
  26. Me.Hide()
  27. End If
  28. End Sub
  29.  
  30. Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
  31. End Sub
  32. End Class
  33. End Namespace
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement