MS_appLib

This commit is contained in:
Digital Data - Marlon Schreiber
2017-10-17 10:35:50 +02:00
parent 0d43e8ffb4
commit abbc238bf6
328 changed files with 227 additions and 341803 deletions

View File

@@ -0,0 +1,24 @@
Imports System.Windows.Forms
Public Class frmError
Private Sub OK_Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK_Button.Click
Me.Close()
End Sub
Private Sub frmError_Load(sender As Object, e As System.EventArgs) Handles Me.Load
Me.txterror.Text = My.Settings.errormessage
Me.Label1.Focus()
Me.Timer1.Start()
End Sub
Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
If Me.OK_Button.Focused Then
Me.Label1.Focus()
End If
End Sub
Private Sub frmError_Shown(sender As Object, e As System.EventArgs) Handles Me.Shown
Me.Label1.Focus()
End Sub
End Class