Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

"External exception C000001D" error

924 views
Skip to first unread message

Carl Gross

unread,
Sep 5, 2003, 1:31:05 PM9/5/03
to
After executing a dll, I get the following error:

External exception C000001D

Below is the routine that the dll executes

rptForm := TrptForm.Create(Application);
with rptForm do begin
Try
//set the envelope's dataset to AOP envelope query
dsDataSource.DataSet := Query1;
(dsDataSource.DataSet As
TQuery).ParamByName('Month_Begin_Param').AsDate := Month_Begin;
(dsDataSource.DataSet As
TQuery).ParamByName('Month_End_Param').AsDate := Month_End(Month_Begin);
(dsDataSource.DataSet As TQuery).Active := True;
tblTable1.Open;
tbltable2.Open;
SCREEN.CURSOR := crDefault;
ppReport1.Print;
Finally
(dsDataSource.DataSet As TQuery).Active := false;
Release;
SCREEN.CURSOR := crDefault;
end; {try}
end; //with
Anyone have an idea?

Carl Gross

unread,
Sep 5, 2003, 2:10:54 PM9/5/03
to
Never mind. It was a parameter problem (too many referenced).
"Carl Gross" <cfg...@scapca.org> wrote in message
news:3f58c7e3$1...@newsgroups.borland.com...
0 new messages