forked from EVEIPH/EVE-IPH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmAPIError.vb
29 lines (19 loc) · 831 Bytes
/
frmAPIError.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Public Class frmAPIError
Public ErrorText As String
Public ErrorLink As String
Public Sub New()
' This call is required by the designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
End Sub
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
Me.Hide()
End Sub
Private Sub llMain_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles llMain.LinkClicked
System.Diagnostics.Process.Start(ErrorLink)
End Sub
Private Sub frmAPIError_Shown(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Shown
lblMain.Text = ErrorText
llMain.Text = ErrorLink
End Sub
End Class