DMiradakis
/
Reporting_how-to-dynamically-pass-xtrareport-parameters-into-the-underlying-sqldatasource-to-t158360
Public
forked from DevExpress-Examples/out-of-maintenance-Reporting_how-to-dynamically-pass-xtrareport-parameters-into-the-underlying-sqlda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.vb
25 lines (22 loc) · 633 Bytes
/
Program.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
Imports System
Imports System.Collections.Generic
Imports System.Linq
Imports System.Windows.Forms
Imports System.Threading
Imports System.IO
Imports System.Reflection
Namespace WindowsFormsApplication1
Friend NotInheritable Class Program
Private Sub New()
End Sub
''' <summary>
''' The main entry point for the application.
''' </summary>
<STAThread> _
Shared Sub Main()
Application.EnableVisualStyles()
Application.SetCompatibleTextRenderingDefault(False)
Application.Run(New Form1())
End Sub
End Class
End Namespace