I have a VARCHAR2(366) field called TERM_TEXT in an Oracle Database that when it is displayed in Crystal Reports 8 is shown as a memo field.
I want to write a formula find the number of occurances of the character "X" in this field.
I've looked at previous answers to this problem and...
My report consists of the following. I am using 3 tables : Schools, Pupils and Parents
A School has many pupils an a pupil has 0,1or 2 parents
The report looks as follows
Group Header 1 Schools
Group Header 2 Pupil
Details Pupil details and Parent details
@IsFather
@IsMother
Group Footer 2...
I have the following piece of VB code
rptComp.ReportFileName = gsRptComparator
rptComp.RetrieveDataFiles
f = rptComp.PrintReport
rptComp.ReportFileName = ""
rtpComp is a Crystal Report ActiveX control on the form
gsRptComparator is just a string variable containing...
I used to have code that looks like the following
cnnConnection.Provider = "Microsoft.Jet.OLEDB.3.51"
cnnConnection.Open gsDatabaseName
lsSQL = "SELECT * FROM BLAH WHERE [Keyfield] = '" & lsSelectedKey & "' "
rstRecSet.Open lsSQL, cnnConnection, adOpenDynamic...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.