gambas-source-code/app/examples/Printing/ReportExample/.src/FMain.class

42 lines
504 B
Text
Raw Normal View History

' Gambas class file
Private $hReport As Report
Public Sub _new()
Application.MainWindow = Me
End
Public Sub Form_Open()
Me.Center
End
Public Sub btnReport_Click()
$hReport = New Report1(Null, LCase(cmbServer.Text))
$hReport.Preview()
End
Public Sub btnAbout_Click()
2019-05-16 08:33:45 +02:00
Message.Info(("A simple report example by Fabien Bodard"))
End
Public Sub btnClose_Click()
Me.Close
End
Public Sub btnReport2_Click()
$hReport = New Report3(LCase(cmbServer.Text))
$hReport.Preview()
End