-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgram.vb
More file actions
25 lines (22 loc) · 792 Bytes
/
Program.vb
File metadata and controls
25 lines (22 loc) · 792 Bytes
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
Imports System
Imports System.Windows.Forms
Imports DevExpress.Utils
Imports DevExpress.XtraEditors
Namespace UIAutomationTestingExample
Friend Module Program
''' <summary>
''' The main entry point for the application.
''' </summary>
<STAThread>
Sub Main()
WindowsFormsSettings.UseUIAutomation = DefaultBoolean.True
Call Application.EnableVisualStyles()
Application.SetCompatibleTextRenderingDefault(False)
Dim loginForm As LogInForm = New LogInForm()
If loginForm.ShowDialog() = DialogResult.OK Then
Dim customersForm As CustomersForm = New CustomersForm()
Application.Run(customersForm)
End If
End Sub
End Module
End Namespace