ReportRow from ReportRecord
Printed From: Codejock Forums
Category: Codejock Products
Forum Name: Report Control
Forum Description: Topics Related to Codejock Report Control
URL: http://forum.codejock.com/forum_posts.asp?TID=14816
Printed Date: 15 November 2024 at 3:44am Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com
Topic: ReportRow from ReportRecord
Posted By: jpbro
Subject: ReportRow from ReportRecord
Date Posted: 23 July 2009 at 3:51pm
After I add a record to the RC using Records.Add or Records.Insert, what is the best way to get the ReportRow object of that record?
Thanks in advance for any help.
------------- Product: Xtreme SuitePro (ActiveX) version 16.2.6 Platform: Windows XP - SP3
Language: Visual Basic 6.0 SP6
|
Replies:
Posted By: mdoubson
Date Posted: 23 July 2009 at 5:52pm
// Call this method to find row corresponded with specified record
// Parameters: - pRecord - Record need to find.
// Returns: - A pointer to associated row object or NULL.
virtual CXTPReportRow* Find(CXTPReportRecord* pRecord);
// Call this method to find row corresponded with specified record.
// This function performs search in children too.
// Parameters: - pRecord - Record need to find.
// Returns: - A pointer to associated row object or NULL.
virtual CXTPReportRow* FindInTree(CXTPReportRecord* pRecord);
------------- Mark Doubson, Ph.D.
|
Posted By: jpbro
Date Posted: 23 July 2009 at 5:57pm
Thanks Mark...I was looking in the wrong places for the Find methods (didn't look in Rows object).
------------- Product: Xtreme SuitePro (ActiveX) version 16.2.6 Platform: Windows XP - SP3
Language: Visual Basic 6.0 SP6
|
|