Files
XWorm-6.5-Source/XWorm/Forms/CustomOpen.vb
T

15 lines
437 B
VB.net
Raw Normal View History

2026-08-27 11:22:34 -06:00
Public Class CustomOpen
Public Sub New()
InitializeComponent()
Opacity = 0
FadeIn(Me, 20)
Guna2TextBox1.Select()
End Sub
Private Sub Guna2GradientButton1_Click(sender As Object, e As EventArgs) Handles Guna2GradientButton1.Click
If Not String.IsNullOrWhiteSpace(Guna2TextBox1.Text) Then
DialogResult = DialogResult.OK
End If
End Sub
End Class