pasted your cust-table example in c:\temp\1.csv
and run following code:
def temp-table tcust
field cust as int
field city as int
field amt as int
index cust-city cust city.
input from c:\temp\1.csv.
repeat :
create tcust.
import tcust.
end.
delete tcust.
for each tcust...
I don't know why, that's just the way it works, only one trigger (per procedure?) per event.
Solve it by making 3 triggers and 2 internal procedures:
ON LEAVE of Widget1 DO:
run ip_validation1.
END.
ON LEAVE of Widget2 DO:
run ip_validation2.
END.
ON GO of Frame X DO:
run ip_validation1.
run...
I'm quit new to Crystal, but I think you can resolve this by adding a Command in de database-expert.
Either creating a second-shoe-set and linking the second index-field (leisure), or by writing out the complete SQL you want.
I'm researching the possibilities of Crystal Reports 11 with our Progress 91d application.
I've managed to export a report from our Progress application but now i'm to setting the parameters.
I can set normal parameters (that is report parameters) just fine:
chParamDefs =...
You should assign the format before the range:
you do this (see your first post):
ASSIGN chRange = chWorkSheet:Range(cColLabel + ":" + cColLabel).
chRange:NumberFormat = "@". (chRange being com-handle)
But what will probably work ( haven't actually tested it, but joey has, see his post)...
I'm trying to add a calc column on a dynamic browse which is populated by a dynamic query.
So when I start off, i don't know anything about what will be in the browse.
I'm able to open the query (with multible buffers) and populate the browse, but when I try to add/fill the calculated column I...
Dynamic temp-table in dynamic browse result-list error
In my code i'm doing the following:
create a dynamic temp-table
fill it with 25+ records
create a dynamic browse for the complete temp-table
create a dynamic query for the complete temp-table
Now when I insert a row into the browse (and...
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.