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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CE 10 reports via asp in activex viewer - Group Tree does not navigate 1

Status
Not open for further replies.

smsaji

Programmer
Jun 26, 2005
91
CA
Hi,

I'm repeating this question after about six months.

Viewing crystal enterprise 10 reports via asp in activex viewer . In the reports with group tree, selecting a group tree does not navigate to that group; unless that page/group had been already visited .

Any one knows of a patch /link or remedy for this to enable group tree navigation? I applied patch common10win_en.zip and viewers10win.zip without result.

Will appreciate any input.

thanks

Previous thread: thread782-1089109
 
Hi,
Sorry, I cannot reproduce that behavior in our setup ( CE10, ActiveX)

When I click on any 'branch' in the Group tree, the report moves to that section, regardless of what had been viewed before.

How are you calling the viewer?
We use the viewrpt.cwr URL command with init=actx



[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Turkbear, Thanks a lot for your response..

Yes, using viewrpt.cwr URL command with init=actx, the group tree naviages.

But when we access with it doesn't. The asp accesses the crystal enterprise objects by creating it as xmlDOM object.

If not clear, willing to give more details.

thanks
 
Hi,
Not clear, but more details probably will not help [dazed] , since XML and its uses/methods are a mystery to me ( we don't use it for any CE stuff, so I never botherd to learn it)



[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Appreciate your time trying to help..
 
Just a guess, but something in filename.asp may be overriding your DrillOnGroup event

As a test try:
[From SDK Help]
# In the drop-down list box at the upper right corner of the code window, select the DrillOnGroup event.
A procedure appears for handling the event.
# Add the following code to the DrillOnGroup event procedure:
Code:
Private Sub CRViewer1_DrillOnGroup(GroupNameList As Variant, _
      ByVal DrillType As CRVIEWERLibCtl.CRDrillType, _
      UseDefault As Boolean)
      MsgBox "You're drilling down on the " & GroupNameList(0) & " group!"

End Sub

Kingfisher
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top