Hi
I have the following code in my program
------------------------------------------------------------
Private Sub Form_Activate()
Dim j As Integer
For j = 1 To UBound(the_crystal_report)
Load crvreport(j)
SSTab1.Tabs = j
SSTab1.Tab = j - 1
crvreport(j).Container = SSTab
crvreport(j).Visible = True
'crvreport(j).Left = crvreport(j - 1).Left + 3000 * j
crvreport(j).ReportSource = the_crystal_report(j)
crvreport(j).ViewReport
Next j
End Sub
------------------------------------------------------------
all my controls appear on the first tab only.how do i solve this...please help
thanks
I have the following code in my program
------------------------------------------------------------
Private Sub Form_Activate()
Dim j As Integer
For j = 1 To UBound(the_crystal_report)
Load crvreport(j)
SSTab1.Tabs = j
SSTab1.Tab = j - 1
crvreport(j).Container = SSTab
crvreport(j).Visible = True
'crvreport(j).Left = crvreport(j - 1).Left + 3000 * j
crvreport(j).ReportSource = the_crystal_report(j)
crvreport(j).ViewReport
Next j
End Sub
------------------------------------------------------------
all my controls appear on the first tab only.how do i solve this...please help
thanks