Hi,
I am trying to use Hyperlinks in my report to fre up a second report when the Client Code is clicked on.
I've used a report that comes with clarity as an example, and adapted the code in my report.
I've set the above code to reference the second report 'Support1b.rox'
When I try to run this in Clarity I get an error saying "Contact System Administrator"
Can anyone tell me what else I need to do to get this working?
I have not included a LinkExp (as the Clarity report i'm using as an example does not have this - it just has the code above)
any ideas about what I need to check to get this working?
I am trying to use Hyperlinks in my report to fre up a second report when the Client Code is clicked on.
I've used a report that comes with clarity as an example, and adapted the code in my report.
Code:
Sub SetLinkTo( row As AcDataRow )
me.LinkTo = "/PRJ/Support1b.rox?Submit" & " ¶m_client = " & row.GetValue("customer_id") & "¶m_proj_type= " & param_proj_type &
+ "¶m_cost =" & param_cost & "¶m_start_period=" & param_start_period & "¶m_finish_period=" & param_finish_period
Super::SetLinkTo( row )
End Sub
I've set the above code to reference the second report 'Support1b.rox'
When I try to run this in Clarity I get an error saying "Contact System Administrator"
Can anyone tell me what else I need to do to get this working?
I have not included a LinkExp (as the Clarity report i'm using as an example does not have this - it just has the code above)
any ideas about what I need to check to get this working?