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

Getting Run-Time Err 28 Using CrystalReport

Status
Not open for further replies.

energize

Programmer
Jul 22, 2000
1
TR
Hi,<br>I'm using CrystalReport in my program to make reports.In a form, i'm receiving some inputs and according to these inputs,i'm using two different .rpt files.The problem is this: i'm getting run-time error 28 (stack is full).I think there's a triggering or loop problem here but i couldn't find a solution&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>The code is here:<br>&nbsp;............<br>&nbsp;if checkbox.value = true then<br>&nbsp;&nbsp;&nbsp;&nbsp;crystalreport1.action = 1<br>&nbsp;else<br>&nbsp;&nbsp;&nbsp;&nbsp;crystalreport2.action = 1<br>&nbsp;end if<br>&nbsp;............<br>Do you have any suggestions?Thanks...<br>&nbsp;
 
HI,<br><br>The error 'Stack Is Full' occurs when your code goes into some indefinite loop.<br><br>Or, you might have coded this in an event, which in-turn will fire this event itself...a loop !&nbsp;&nbsp;&nbsp;:)<br><br>Try...Best of luck !<br><br>Pravi.<br><br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top