Re: 300 lines?
- Posted by Ben Fosberg <BenFosberg at ATT.NET> Aug 08, 2000
- 413 views
You're getting a lot of explanations, but I don't see my "first guess" on the list. The Euphoria documentation somewhere refers to "stamped" vs unstamped files; with the caveat that stamped files don't count against your total "line count." Check whether or not the files you're including are stamped - if not, then the total line count of those files is included in the 300 line limit. Just a guess Ben Paul Kerslake wrote: > I made a quick program, or, well, I'm trying to. But, I've > gotten an error message saying: Your program exceeds 300 > lines....... So, It's telling me my program it's 300 lines long > but, my program isn't. Here's what It looks like: include > image.e > include graphics.e > include pcsounds.e integer gmode > gmode=graphics_mode(18) > use_vesa(1) > sequence > ulrp,urrp,longmid,llr,lrr qplay(bluePeter) ulrp=read_bitmap("ulrp.BMP") > > urrp=read_bitmap("urrp.BMP") > llr=read_bitmap("llr.BMP") > lrr=read_bitmap("lrr.BMP") > longmid=read_bitmap("longmid.BMP") display_image({1,1},ulrp[2]) > > display_image({550,1},urrp[2]) > display_image({1,400},llr[2]) > display_image({550,400},lrr[2]) > display_image({5,70},longmid[2]) It's 23 lines long! Could you > tell me how to fix this problem and I was wondering if I can > have one ,ex file execute another. e.g. If I wrote a program > that was a menu of games and when you chose one, it would open > another ex file instead of having one confusing giant ex > file. Thanks