Good afternoon, I'm struggling to translate from C # to Cobol. Can someone translate this?
ReportDocument cryRpt = new ReportDocument ()
cryRpt.Load ("C: \\ temp \\ rlfatemi.rpt")
crystalReportViewer1.ReportSource = cryRpt
crystalReportViewer1.Refresh ().
Page 1 / 1
Good afternoon, I'm struggling to translate from C # to Cobol. Can someone translate this?
ReportDocument cryRpt = new ReportDocument ()
cryRpt.Load ("C: \\ temp \\ rlfatemi.rpt")
crystalReportViewer1.ReportSource = cryRpt
crystalReportViewer1.Refresh ().
Try this:
declare cryRpt as type ReportDocument = new ReportDocument
invoke cryRpt::Load ("C:\\temp\\rlfatemi.rpt")
set crystalReportViewer1::ReportSource to cryRpt
invoke crystalReportViewer1::Refresh
Sign up
Already have an account? Login
Welcome to the Rocket Forum!
Please log in or register:
Employee Login | Registration Member Login | RegistrationEnter your E-mail address. We'll send you an e-mail with instructions to reset your password.