Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hyperlinks

Status
Not open for further replies.

CDeking1

Programmer
Dec 29, 2005
2
US
I have a report that has 3 reports in it. I also have drill downs to each level of the report. I am having a problem when I use the claim number drill down it just goes to the first claim number that is out there and does not go to the claim number that belongs to the user. How can I accomplish this?

Thanks for the help
Christy
 
If the link expression contains hyphen (-), then the link will not work correctly, because hyphen (-) is treated as a range operator.

You can try this:

1. Use Actuate Basic StrSubst function, or any other custom function, to replace the hyphen with any other character. It can be done in the LinkExp property or in the SetLinkTo method.
2. In the same frame, where the original searchable control is, create a separate control with the modified value and hide this control (position.X = -10000).

Make sure the LinkExp property of control created in step (1) points to the control created in step (2).

I hope this helps.

-- JB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top